Basic Facebook Graph API Dynamic Plugins
Author: | tgd |
Date: | 17 Dec, 2011 |
Category: | plugin |
Download
64bit
Description

I have done some facebook graph api dynamic plugins that should not get burried on my hdd so i would like to share them here. These are my first attempts on c#, so the code may be bit clumsy, but beeing honest the important crucial parts are copy pasted anyway. A nice fact is, that you do not need any external facebook sdk.
These are five examples for talking with the facebook graph api from within vvvv:
-List a users albums. -List an albums photos. -Create new albums. -Upload photos to an album. -Basic posts to a wall
All the hard work really is done by the WebClient class:
WebClient.DownloadDataAsync WebClient.UploadDataAsync WebClient.UploadFileAsync
are really straight forward and easy to handle methods.
You can of course use these to call other graph api´s functions like: Read the feed, comment something, like something, list friends ..and many others. You just have to provide the right URI and valid parameters for a particular api call.Find more details at facebook´s developer pages: http://developers.facebook.com/docs/reference/api/
Notes:
Please mind that you will need a facebook developer account to be able to work with these plugins. This requires registering by mobile phone or creditcard number.
These plugins are meant to be used with an offline access token. There is no "on the fly" authentication but a helppatch is provided for getting started with a facebook app and access token stuff.
Thank you for helping me out in the forums on the plugin topics. Special thanks go to frank at frank-it-beratung.com who made wonderful and easy to follow tutorials on the webclient stuff and facebook communication. -> http://frank-it-beratung.com/blog/?s=facebook
Honorable mentions in dev: philip :)
update:
According to the Garph API changelog,
these Plugins will expire on 30.04.2015
See: https://developers.facebook.com/docs/apps/changelog They were written against the 1.0 Version of the API
Comments
Comments are no longer accepted.Please create a new topic in the vvvv beta forum to discuss this contribution.
great, do you need a job ? :)
:)
does not work anymore? I tried it with https://developers.facebook.com/tools/explorer/ access token, but it doesn't work.
Not sure about this, since i do not have access to a facebook dev account anymore. so i can not test. Also think that token from graph api explorer page is not the right one to use, since it is a temporary one and also does not connect to a specific app. Please follow the steps from HowToAccessToken.v4p
still works ;)
is it possible to target a specific page and not the profile of the author of the application?
@io have you found a way to post to a fanpage? i could use that feature
what version of the api is this?, does not work, thanks
Just checked the versioning and availability at https://developers.facebook.com/docs/apps/changelog The plugins were written against the 1.0 version from 2010 and should "expire" in 10 days (30.04.2015), lol. What a timing. You mind to tell what is broken already or errors? I still can not test it myself.