将 Gigya API 与 Node.js 结合使用

发布于 2024-12-13 18:04:01 字数 268 浏览 0 评论 0原文

对于我的一个项目,我想尝试使用 Gigya 作为我的社交网络连接提供商,并使用 Node.js 编写我的应用程序。有人这样做过吗?

Gigya 提供了一个旨在在客户端上使用的 JavaScript API。

http://developers.gigya.com/020_Client_API

应该可以将其调整为服务器端使用。

For one of my projects I'd like to try out Gigya as my social network connection provider and am writing my app using Node.js. Has anyone done this?

Gigya provides a JavaScript API that is intended to be used on the client.

http://developers.gigya.com/020_Client_API

It should be possible to adapt that for server side use.

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

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

发布评论

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

评论(2

沫雨熙 2024-12-20 18:04:01

Gigya 的客户端 JavaScript 旨在尽可能在浏览器中运行,因为它们使用其域设置的 cookie 执行两部分身份验证。您可以尝试将其移植到服务器端运行,但是没有一个公共方法可以像广告中那样工作。

我使用他们的专有身份验证为他们的 REST API 编写了一个包装器,我已经在工作项目中使用了几周了:https://github.com/jproulx/Gigya-Node-SDK - 请注意,并非所有内容都经过彻底测试,因为我只需要使用社交化服务的子集服务器端。它应该作为一个很好的起点来引导一些东西来满足您的需求。

Gigya's client side javascript is intended to be run in the browser as much as possible, since they perform 2 part authentication using cookies set by their domains. You can try to port it to run server side, but none of the public methods will work as advertised.

I've written a wrapper for their REST API using their proprietary authentication that I've been using in a work project for a few weeks: https://github.com/jproulx/Gigya-Node-SDK -- note that not everything has been tested thoroughly as I've only needed to use a subset of the socialize services on the server side. It should serve as a good jumping off point to bootstrap something for your needs.

逆蝶 2024-12-20 18:04:01

Gigya 还没有官方的 Node SDK。不过,我已经编写了一个实现整个服务的 SDK。

除了标准 API 之外,它还包含对来自帐户和帐户的流数据的特殊支持。 DS。

Git: https://github.com/scotthovestadt/node-gigya

使用“npm install gigya”进行安装”。

Gigya does not yet have an official Node SDK. However, I've written an SDK that implements the entire service.

In addition to the standard APIs, it contains special support for streaming data from Accounts & DS.

Git: https://github.com/scotthovestadt/node-gigya

Install with "npm install gigya".

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