我不想將SDK添加到我的項目中,但我想將消息發佈到FB頁面(公共頁面,而不是我)。 當我明白我需要做的SMT這樣不使用PHP-SDK發佈到Facebook牆?
curl -F 'access_token=...' \
-F 'message=Check out this funny article' \
-F 'link=http://www.example.com/article.html' \
-F 'picture=http://www.example.com/article-thumbnail.jpg' \
-F 'name=Article Title' \
-F 'caption=Caption for the link' \
-F 'description=Longer description of the link' \
-F 'actions={"name": "View on Zombo", "link": "http://www.zombo.com"} \
-F 'privacy={"value": "ALL_FRIENDS"} \
https://graph.facebook.com/me/feed
我怎樣才能獲取該訪問令牌密鑰? 當我使用來自請求https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id=xxx&client_secret=yyy的令牌時,它表示它的令牌只能用於客戶端信息(client_credintials)。 我需要另一個grant_type,或另一個參數?
所以我不能只發送消息沒有任何對話框/重定向? – Wayne
nope。想象一下如果可能的話會發生的垃圾郵件。 – Rufinus
但我認爲這就是爲什麼我使用訪問令牌。 在我們的「類似Facebook的」社交網絡中,我只爲我的應用程序獲取令牌(一次),然後用它發佈消息。 – Wayne