Facebook 事件 Json 消息 - 我怎样才能得到它?

发布于 2024-10-31 19:48:41 字数 122 浏览 0 评论 0原文

我想问是否有人知道如何获取 facebook 事件 json 消息。是否必须以编程方式发生并不重要。我只是希望能够以一种或另一种方式阅读该消息。

提前致谢。

Ps 也许是一个可怕的问题,但你走了!

I would like to ask if someone know how to grab a facebook event json message. It doesnt matter if it has to happen programatically. I just want to be able to read the message one way or another.

thanks in advance.

P.s. Maybe an awful question but here you go !!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

等往事风中吹 2024-11-07 19:48:41

我曾经不得不编写一小段代码来解析 json 封装的消息。然而最近我发现如果你使用 Java 有一个方便的解决方案

Resty 是一个小而方便的库
通过 Java 与 RESTful 服务对话。
做起来非常复杂
标准的最简单 HTTP 调用
Java 库。雷斯蒂希望改变
那个。

http://beders.github.com/Resty/Resty/Overview.html

    Resty r = new Resty();
Object name = r.json("http://ws.geonames.org
   /postalCodeLookupJSON?postalcode=66780&country=DE")
  .get("postalcodes[0].placeName");

只需导入一个小 jar 库,您就会感到惊讶。我目前使用此类从 url API 获取信息。

I once had to code a small chunk of code to parse a json-encapsulated message. However recently I found out there's a handy solution for it if you use Java

Resty is a small, convenient library
to talk to RESTful services from Java.
It’s surprisingly complex to do the
simplest HTTP calls with the standard
Java library. Resty hopes to change
that.

http://beders.github.com/Resty/Resty/Overview.html

    Resty r = new Resty();
Object name = r.json("http://ws.geonames.org
   /postalCodeLookupJSON?postalcode=66780&country=DE")
  .get("postalcodes[0].placeName");

Just import a small jar lib and you'll be surprised. I currently use this class for getting info from url API.

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