How can i find Facebook Open Graph Activity Plugin - facebook

I have developed a website that uses Facebook Open Graph methods. But when i submit it facebook returned me with a message that i have to put something in my website like the image below
Where can i find a plugin like this?
I only find this one ; https://developers.facebook.com/docs/reference/plugins/activity/
but it's useless.
Thanks for your help.

There is no plugin like this currently available. You have to develop one yourself.
You should be using facebook connect and keeping track of all this actions as well as submitting them to graph API. If so, you only need to ad this on/off button and activity log.
This way the user has control over his activity...

Related

Facebook interactive Open Graph Stories

Lately I'm starting to see interactive open graph stories. Not just links or images, but bar charts which you can hover and give you certain information.
An example (print screen) here.
Does anyone know wheter or not this feature is accessible for anyone? Or does Runkeeper has some kind of privilege? And IF it's possible, how? Couldn't find anything in the docs...
Thanks!
Yes It's accessible for anyone. After create your app on facebook you need to by a SSL Certificate but first start with non public app. Facebook needs a secure url to publish your app. Once you have your APP you need to setting up your Open Graph. In this video you will learn how to publish on facebook any activity.
Visit this documentacion: Open Graph

Show Facebook wall on website

Is there a way to show your facebook wall on a website? I have been looking for days and all I can find is methods of showing ones OWN messages. Im looking for something(script/code) that will show the complete wall including what friends are posting. Is this even possible or is it prohibited by Facebook? I did search there 'developers api site' but couldnt find an anwser to this.
It's possible but you need to build your own custom version as officially facebook doesn't provide any pre-built plugins or code.
You'll have to code a lot of back-end and front-end stuffs. If you're really interested in building something like that, you might wanna consider looking at this script Facebook Wall Script 3.0 with PHP and Jquery
If you want to save time, you might buy that script, do the necessary changes and integrate facebook graph API so it shows data from your fb profile, but if you want build more advance version and have lot of time, then you can build a custom version from scratch.
i don't see the point of show your facebook wall on a website since can have that easily by pointing the user back to your facebook account.
i would suggest you to display a facebook page plugin instead as you can earn some like and it is free of charge.
could you let me know why you want to do that?

Facebook Open Graph Custom Actions on the Fly

I am giving a look to the Open Graph API. From what I see so far we must set up the actions and objects in the App configuration on Facebook.
What I am looking for is to set up actions and objects on the fly using PHP or Javascript.
I want to build an application that will be integrated in a Social Networking CMS. I do not want my customers to set up each action and object on the Dev App, it could take forever. I simply want to fire them with PHP based on the different actions that can be done in this CMS (such as: watch a video, listen music, chatting with friends etc.. etc.. )
Is there a way to create actions on the fly with PHP or Javascript?
Thanks
No - each action you setup has to be approved by Facebook before it can be used outside the developers of your application.
I had the same question, seems to be buried in the opengraph section:
https://developers.facebook.com/docs/technical-guides/opengraph/publish-action/

Post On Facebook Wall From Windows Phone

I want my application to post something on Facebook wall. My application is supposed to run on WP7.
Is there any way of opening a web browser with a default Facebook (hosted on Facebook server) publishing form? I see different websites opening a new window with that form when Share button is clicked and then you click Publish and here you go - the post is on the wall :)
WebBrowserTask is pretty limited and seems to be able to send only GET data but even then... I don't know what kind of data and how named it should be sent. Anyone?
Why not use the Facebook Developer's Toolkit to post via API instead of trying to use a browser?
You can try Post to Facebook user wall using Facebook.dll in WP7.
If you want to post on someone other than the user's wall, then the Facebook SDK is required. But if you just want to quickly add the option to share something to Facebook, you could just open a new WebBrowserTask and have it go to http://www.facebook.com/share.php, and just add u and t to the URL. u being the URL to share, and t being the Title.
But from what's been said it seems the SDK is what your going to want.

How to add a link (Like, comment) at the facebook app wall post

I have a Facebook application where I am using it in Windows phone 7 application.
I am done with share on Facebook option through my mobile application. I want to add an extra link at the bottom of my application wall post (beside the like and comment links present)
How can I achieve this? Which setting need to be set in the application settings?
The docs for integrating share functionality are at http://developers.facebook.com/docs/share.
However:
We don't recommend the Share button
for new developers. If you aren't
already using the Share button, we
recommend you migrate to the Like
button and Open Graph protocol instead
of Share for sharing pages from your
website. The Like button is simpler to
user and is the recommended solution
moving forward.
Because this is implemented in HTML & JS with Facebook's own scripts you'de need to look at usingt a WebBrowserr control to embed this funcitonality on your page.