javascript – chrome.identity.launchWebAuthFlow的正确重定向网址是什么?

前端之家收集整理的这篇文章主要介绍了javascript – chrome.identity.launchWebAuthFlow的正确重定向网址是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在Chrome打包的应用程序中使用 chrome.identity API,以允许用户使用 github进行身份验证.

从应用程序方面来说,我很满意:

chrome.identity.launchWebAuthFlow(
  {'url':'https://github.com/login/oauth/authorize?client_id=clientidgoeshere','interactive':true},functionToTakeRedirectURL
);

但我不确定github端的重定向URL应该是什么.当应用程序处于活动状态时,我会在github应用程序页面上将重定向URL设置为https://appidgoeshere.chromiumapp.org,但我不认为该URL在应用程序运行之前可用.

当你在编写应用程序时,有人知道在哪里指向重定向吗?

我正在使用chrome.dart库在Dart中编写应用程序,但我认为如果我使用普通的javascript编写,则存在同样的问题.

解决方法

这个 github auth chrome app sample使用chrome.runtime.id来构建重定向URL:
var redirectUri = 'https://' + chrome.runtime.id +
                  '.chromiumapp.org/provider_cb';

参考文献:

> chrome.runtime
> Sample app linked to from this (chrome app identity) page

原文链接:https://www.f2er.com/js/159559.html

猜你在找的JavaScript相关文章