open-graph-beta

Open Graph Beta: Add Data to Profile URL

孤街浪徒 提交于 2020-01-15 03:35:07
问题 In the new Open Graph Beta Auth Dialog does the "Add Data to Profile URL" essentially serve as the callback URL where Facebook will send the user after they click the "Add to My Timeline" button? In a related question, will clicking the "Add to My Timeline" button in the new auth process in itself generate posting an item to the new Timeline page for the user? Since these new features are in beta, we're not sure what to expect. 回答1: Have a look at: https://developers.facebook.com/docs/beta

Facebook Open Graph Beta - Can't create action because I already use it

瘦欲@ 提交于 2019-12-11 12:42:29
问题 The new Open Graph beta is telling me that I cannot use the action 'want' or the object 'item' I have used them in previous applications, however these have since been deleted and I've created a new application where I cannot use it. Is this a bug, or am I doing something wrong? 回答1: Perhaps the types are not defined in the namespace you're using (or they were restricted to the app that defined them). If the types have not been created within the new application, you probably should use the

Implementing Facebook wishlist tutorial Application Does Not Own Action Type Error

。_饼干妹妹 提交于 2019-12-08 03:26:18
问题 I am working through the Facebook Wishlist app for Android. When I attempt to add my custom object to the Facebook graph the API returns the following error: { "error: { "type": "OAuthExeption", "message":"(#100) Application does not own 230752723668296 action type" } } I haven't been able to find any specific documentation on this particular error. Are there any Facebook developers out there who may be able to help me interpret this. I should also mention that I already have a working

How to get all the Open Graph Beta actions generated by an app?

有些话、适合烂在心里 提交于 2019-11-28 10:53:28
It is already possible to get all actions for custom app actions and objects: https://graph.facebook.com/me/ {appNameSpace}:{action}/{object} This will list all the actions generated by an app, but only for a given user... How do I get all the actions generated by an app (for all its users)? I've tried this request with an app access token : https://graph.facebook.com/ {appId}/{appNameSpace}:{action}/{object} But it does not work... I was also looking for an activities or actions FQL table, since each action has an id , they should be accessible somewhere. Any suggestions? AFAIK there is no