我如何将 JSON 数据发布到 facebook GRAPH API
是否可以从 json 数据开始在我的墙上发布消息?
所以我可以做一个 facebookPost 课程。使用我想要的属性创建一个 facebookPost 对象。 将其序列化为 json 字符串并使用 facebook graph feed 方法发布它?
或者我应该只使用字典并将其解析为查询字符串?
谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以跳过将其序列化为 JSON 字符串的步骤。 JSON 对象只是键:值对的集合。 Graph API 要求您使用所需的 POST 参数(键=值对)集来 POST 到特定 URL。所以,是的,您可以只创建一个查询字符串而不是 JSON 字符串并 POST 该字符串。
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.
显然,您可以使用 Facebook Graph API 将信息发布到墙上。
以下是您必须阅读的详细信息。
Grpah API && 图形 API 中的 Post 方法
Obviously you can post into a wall using Facebook Graph API..
Here are the things you have to read for detailed information..
Grpah API && Post method in graph API