我如何将 JSON 数据发布到 facebook GRAPH API

发布于 2024-10-31 10:30:56 字数 185 浏览 1 评论 0原文

是否可以从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情独悲 2024-11-07 10:30:57

您可以跳过将其序列化为 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.

时光礼记 2024-11-07 10:30:57

显然,您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文