问题标签 [auth-token]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
708 浏览

android - Google AuthToken Validity for C2DM Services

I am Developing a web server which sends push messages automatically to my android application whenever I add new data on web server. But, for sending the push message through C2DM server we need to get a google Authentication Token(AuthToken). My doubt is that whether the token can be saved and used for later times also, or we should every time get a fresh AuthToken...!!!

Someone please help me regarding this..!

Thanks in Advance

0 投票
1 回答
137 浏览

facebook - Auth Tokens App 是特定的吗?

我正在开发一个应用程序,该应用程序将允许用户执行我们网站的许多相同操作(当然是精简版),但我们也在考虑为我们的网站添加 facebook 登录。根据我的阅读,允许 facebook 登录需要您提交您的网站并获取应用程序 ID。因此,现在我将拥有 2 个具有不同类型权限的应用程序 ID(应用程序权限将有多个,登录将只有基本权限),我能否只为用户存储 1 个访问令牌(以更高级别的权限为准)权限)还是我需要同时存储两者?

据我所知,我只需要 1 个,但我想在开始这个过程之前先了解一下。谢谢!

0 投票
0 回答
236 浏览

c# - YouTube 的已过期身份验证令牌

我已阅读此http://code.google.com/apis/youtube/2.0/developers_guide_protocol_oauth2.html 我的问题是我需要 C# .net 中的代码,它将为 Youtube 帐户返回过期令牌。但我不明白我需要在获取请求的链接中使用哪些参数。

https://www.googleapis.com/oauth2/v1/tokeninfo

access_token = DQA* * ** _ONz

可能有什么想法?

谢谢你。

0 投票
1 回答
335 浏览

android - Android 中多个 Google 数据 API 的单个 google 帐户 authtoken

你好android爱好者,我正在努力寻找解决这个问题的方法。我计划访问用户的 Google 日历和 Google 文档(使用 google-api-java-client-v1.6.0)。我可以通过 AccountManager 访问用户的 Google 帐户,但由于这个原因,我没有搞砸请求 authToken 对用户进行身份验证:

当用户确认应用程序访问他的 Google 帐户时,我将如何在单个 Activity 中处理对 Docs 和 Cal 的多个 authToken 请求?

在我的应用程序中,当用户允许访问用户帐户时,Google Docs 和 Cal 位于后台运行的不同选项卡上。

任何链接教程将不胜感激。

蒂亚。

0 投票
1 回答
830 浏览

ruby-on-rails - 设计 - auth_token 和 current_user

我正在使用 Rails 3.0 和 Devise 1.1.7。为了开发一些 API 行为,我启用了 TokenAuthentication 功能。

问题是,当我尝试使用 auth_token 参数访问时, current_user 没有正确设置。应该是?还是我错过了什么?

提前谢谢你。

0 投票
1 回答
307 浏览

facebook - Facebook 身份验证机制改变了吗?

我的应用程序在 IFrame 中运行,并且已经运行了一个月。从上周开始,主页一直在刷新,因为看起来我的 iframe 内容不再提供参数 auth_token 和 fb_sig_session_key 了。

最近平台在这方面有什么变化吗?

非常感谢您的支持。

乔纳森。

0 投票
4 回答
4291 浏览

android - 未登录时是否可以获取公共 facebook 墙供稿?

我实际上是在问是否可以在没有身份验证令牌的情况下获得公共墙提要?如果我没有登录 facebook,我仍然可以看到公开帖子,这是一个很好的例子: http: //www.facebook.com/adele 我正在使用这样的 facebook graph API:

如果我连接到 FB,我将成功获取提要。离线时是否需要申请新令牌?

谢谢!

0 投票
0 回答
130 浏览

android - How to android receives authToken

Where to find the source code for getting AuthToken. In the folder with the android source (core/java/android/accounts), I found the code only works stored in a database and extracts from it. But I am interested in the code that makes a request to the server for AuthToken I'm wondering which of the four methods (OAuth 1.0, AuthSub, ClientLogin and OAuth 2.0) use, because OAuth 1.0, AuthSub, and ClientLogin have been deprecated.

0 投票
1 回答
211 浏览

android - C2DM 身份验证错误

我有一个C2DM基于应用程序,它工作正常,但最近我得到了Auth Error 虽然我得到了 RID(注册 ID)并且正在发送消息。最近我读到客户端登录密钥即将到期(4 月 30 日),may be因为我收到了这个错误。我的问题是,我如何再生Client Login Keys????怎么恢复AUTH TOKEN??????任何帮助将不胜感激......谢谢

0 投票
0 回答
251 浏览

android - 使用 AccountManager 中的 AuthToken 处理 Google 客户端 API 请求

我想从用户那里访问 Google Drive 帐户。我从 Android 上的 AccountManager 获得了一个令牌。

我将来自 Google 的客户端库和驱动器库添加到我的项目中,并希望将带有接收到的令牌的请求发送到 Google 服务。我怎样才能做到这一点?