问题标签 [auth0]

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 投票
3 回答
1724 浏览

ruby-on-rails - 如何使用 Auth0 连接 postgres 数据库

当我将 heroku postgres 数据库与 Auth0 连接时,我遇到了错误。

我正在使用 Auth0,所以请在下面找到带有 heroku 数据库详细信息和 URL 的 auth0 代码。

0 投票
1 回答
378 浏览

ruby-on-rails - 使用 auth0 从 Twitter 创建一个新用户 get nil email

我将 auth0 用于我的 rails 应用程序,我尝试使用 auth0 登录社交连接,这适用于googlefacebook,但是当我尝试使用twitter时,我收到用户的空白电子邮件,并且无法与用户登录空白电子邮件。

这是我得到的回应

如何使用 auth0 获取 twitter 的用户电子邮件

0 投票
1 回答
113 浏览

java - Heroku/Auth0 Android + JAVA API 错误

https://github.com/auth0/auth0-java/tree/master/examples/java-api

该链接显示 Auth0 + Java API 种子 github。与给定命令连接后,它指出“然后您可以尝试对http://localhost:3001/secured/ping执行 GET,如果您不在标头中发送 JWT,则会引发错误。” 我收到了这个错误,我不确定如何在标头中完成发送 JWT。

0 投票
1 回答
926 浏览

oauth - 使用 auth0 Firebase 和 Ionic 进行 Linkedin 身份验证

我正在使用 auth0.com 创建一个带有 Firebase 和 Ionic 的种子项目(在Apps / APIs下)。

但是,我遇到了这个问题Invalid redirect_uri. This value must match a URL registered with the API Key。我做了以下研究:

linkedin:无效的redirect_uri。此值必须与使用 API 密钥注册的 URL 匹配 (尝试使用http://localhost:8100/auth/linkedin/callbackOAuth 2.0 Redirect URLs不工作)

https://naveengopisetty.wordpress.com/2014/09/15/linkedin-oauth-2-0-issue-invalid-redirect_uri-this-value-must-match-a-url-registered-with-the-api-键/http://localhost:8100/signin-linkedin不工作)

https://www.drupal.org/node/2357091http://localhost:8100/linkedin/company/token效果不佳)

无论我在 Linkedin 应用程序中更改了什么,登录弹出 url 总是有redirect_uri=https%3A%2F%2Fmyproject.auth0.com%2Flogin%2Fcallback

这意味着由于某种原因我的重定向 url 没有得到改变,并且 auth0 以某种方式强制在其中输入“错误”的 url?

任何人都知道如何解决这个问题?还是 auth0.com 错误?

0 投票
1 回答
748 浏览

express - 如何在 expressjs 应用程序上以 auth0 用户身份进行 mocha 测试?

对不起一个新手问题,我还是摩卡的新手。我有一个现有的应用程序,我的任务是创建一个 mocha 测试用例。这个应用程序使用passport-auth0passport用户登录。如何编写 mocha 测试,以便我可以以虚拟用户身份登录以测试受限功能?

0 投票
1 回答
681 浏览

javascript - 使用 Linkedin javascript 身份验证时本地主机源无效

只是这个问题的后续行动:

使用 auth0 Firebase 和 Ionic 进行 Linkedin 身份验证

我正在尝试 auth0、Firebase、Ionic、Linkedin 的组合。

弹出窗口出现后我收到此错误并单击登录:

在此处输入图像描述

虽然我已经在应用程序表单中有 localhost:

在此处输入图像描述

奇怪的是,当我在浏览器中单击刷新时,它说我上次已通过身份验证并显示了我的电子邮件。

任何人都知道如何解决这个问题?

0 投票
1 回答
227 浏览

angularjs - 如何将 Auth0 与我的 Supersonic (Appgyver) 混合应用程序集成?

我正在尝试使用Supersonic构建我的第一个混合移动应用程序。我想使用Auth0来处理应用登录功能。

我怎样才能做到这一点?

鉴于 Auth0 对 Cordova、Phonegap 和 Ionic 的支持,似乎可以(并且应该)有办法做到这一点。

我正在使用 Supersonic 的默认 AngularJS 框架。

0 投票
1 回答
878 浏览

angularjs - 使用 auth0 登录后 Twitter API 请求需要 401 授权

我刚刚完成了https://auth0.com/docs/quickstart/spa/angular/no-api中描述的 auth0 angularjs 教程,并成功登录了 Twitter(所以我得到了令牌)。我想扩展种子项目,向 twitter API 发出一些请求以获取用户时间线等。

我已经尝试过$http使用 jsonp 进行请求,并在 app.js 中使用 Authorization 标头添加请求拦截器。它看起来像这样:

主页Ctrl

应用程序.js

响应返回 401 需要授权:

我究竟做错了什么?在请求获得时间表之前我应该​​做另一件事吗?也许我对 oauth 工作感到困惑,我需要 access_token 来完成请求?

提前致谢。

0 投票
1 回答
1389 浏览

asp.net - How to Get a List of Logged in Users?

I don't know how to narrow down this question further: We are using Auth0 and WebApi 2. I need to display a list of all users who are currently logged in. More specifically, Auth0 issues a token, this token is then sent with every request to our WebApi. I imagine, I need to write the token and the associated id to the database every time a request is made to any controller with the specific token? Can someone give me a general idea of whether or not I am on the right path here or what I should be reading?

Auth0 docs are of little help, since this seems to be an unusual requirement. Same with: http://www.asp.net/web-api/overview/security

I am not concerned about clientside. Just need the way to go on the server.

Edit: I added another part to this question in the comments: I would also like to know how to revoke tokens, effective immediately. To understand this, I believe I need to understand exactly how the backend verifies the token sent by the front end, and whether or not Auth0's server gets called for this at all.

0 投票
1 回答
315 浏览

go - Go Martini 中的 Auth0

我正在尝试在 Go 中将 Auth0 与 Martini 一起使用。我正在使用他们的示例,但无论我尝试什么,我似乎都无法让它工作。

这是我的代码:

当我运行它时,我会感到恐慌,说Value not found for type http.Handler

如果我将 更改jwtMiddleware.HandlerjwtMiddleware.HandlerWithNext,我会为Value not found for type http.HandlerFunc.

有谁知道我做错了什么?