Is it possible to post a message on my wall starting from json data?
So i can make a facebookPost class. Make a facebookPost object with the attributes i want.
Serilize it to a json string and post this with the facebook graph feed method?
Or should i just use a dictionary and parse this into a querystring?
Thx!
You can skip the step where you serialize it to a JSON string. A JSON object is just a collection of key:value pairs. The Graph API requires that you POST to a specific URL with your desired POST parameters (themselves key=value pairs) set. So yes, you can just create a query string instead of a JSON string and POST that.