创建一个应用程序拥有的对象需要一个应用程序访问令牌。然后,当您创建应用程序拥有的对象时,您确实包含应用程序访问令牌
curl \
-X POST \
"https://graph.facebook.com/app/objects/books.book" \
-F "access_token=$APP_TOKEN" \
-F "object={
\"title\":\"The Hunt for Red October\",
\"image\":\"http://ecx.images-amazon.com/images/I/314leP6WviL._SL500_AA300_.jpg\",
\"url\":\"https://link.you.want.displayed/example/hunt-for-red-october-link\",
\"description\":\"Classic cold war technothriller\",
\"data\": {
\"isbn\":\"425240339\"
}
}"
https://developers.facebook.com/docs/opengraph/using-object-api/#publishing
要创建应用访问令牌:
GET https://graph.facebook.com/oauth/access_token?
client_id=YOUR_APP_ID
&client_secret=YOUR_APP_SECRET
&grant_type=client_credentials
https://developers.facebook.com/docs/opengraph/howtos/publishing-with-app-token/
我不知道如何在 php 中准确地翻译这段代码,但我认为你很可能可以轻松做到这一点。
我希望这对你有用。对不起,如果我不关注你的问题。