-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Posting OpenGraph Object #759
Comments
Anyone want to implement this? Javascript 🔢 Obj-C ("Posting objects to the graph" Example from Facebook Docs @ https://developers.facebook.com/docs/ios/graph): // Create an object // specify that this Open Graph object will be posted to Facebook // Add the standard object properties // Add the properties restaurant inherits from place // Add the properties particular to the type restaurant.restaurant // Make the Graph API request to post the object |
I'll implement the iOS version after this PR #747 for the Android version |
What exactly will you implement? I can already post a custom story now using an existing custom action and object using your plugin. Will your update allow for creating a new instance of an object from the share Dialog call? |
how can i make this simple open graph call using the plugin: FB.api( As open graph story does not prompt a share dialog |
i need post too, how i do? |
+1 I just need to post to current user's wall without bring up the share dialog. |
Can it be that the share dialog with open graph stories only works in the web browser on your smart phone? Not in the native app? |
+1 for opengraph posts support |
stale |
How do I post an Open Graph API Story?
In Javascript on the web it looks like this...
FB.api('me/' + fbAppName + ':' + storyId, 'post', objects, respond);
The FacebookConnectPlugin is read only?
Obj-C:
Javascript:
cordova.exec(respond, respond, "FacebookConnectPlugin",
"graphApi", [ 'me/' + fbAppName + ':' + storyId,
permissions ], [ "publish_actions" ]);
The text was updated successfully, but these errors were encountered: