有谁知道在 Erlang 中完成的示例 facebook 应用程序(或 facebook 连接应用程序)?我正在寻找包含整个过程的东西。具体来说,我似乎没有找到任何关于用户身份验证的内容。
我已经检查了erlang_facebook、 erlang2facebook 和 erlyface ,但它们似乎都没有提供一个简单而全面的示例,我作为初学者可以使用。不过,我很乐意编写一些代码,最好使用 mochiweb 作为后端。
有谁知道在 Erlang 中完成的示例 facebook 应用程序(或 facebook 连接应用程序)?我正在寻找包含整个过程的东西。具体来说,我似乎没有找到任何关于用户身份验证的内容。
我已经检查了erlang_facebook、 erlang2facebook 和 erlyface ,但它们似乎都没有提供一个简单而全面的示例,我作为初学者可以使用。不过,我很乐意编写一些代码,最好使用 mochiweb 作为后端。
我在 Erlang 中编写了一个 FB 应用程序,并查看了您提到的项目。我发现直接使用 FB 的图形 API进行身份验证等更容易。我使用 Nitrogen/Mochiweb 作为 Web 服务器并使用 httpc:request 发出图形请求。
Zotonic (Erlang CMS/Framework) 提供 Facebook 集成,包括身份验证。
A few years on and I still find Jeremy Raymond's method satisfying. In particular, wrapping their ever-changing url-as-an-API scheme inside your own API seems to be the most painless. httpc is useful, and so is cowboy if you are familiar with that.
Whatever you choose, you should absolutely not be designing your ideas around their API. Convert their ideas into your project's semantics by wrapping their API. After all, the web isn't the whole internet and you never know when FB might stop being the cool place to waste your life. There is no telling if your application/library/codebase-you-use-on-something-else will outlive theirs.