如何在OAUTH之后获取URL

时间:2019-05-30 10:56:01

标签: firebase google-oauth nativescript

我有使用本机脚本编写的移动应用。 我正在对Google帐户使用Firebase身份验证,我已经从Firebase API收到了一些令牌。

当前我正在使用类似这样的东西:

        fetch(
          "https://internal.domain.com/app/rest/getleft",
          {
            method: 'GET',
            headers: {
              "Accept": 'application/json',
              "Content-type": 'application/json',
              "Authorization": 'Bearer ' + this.$storage.getSync({key: 'accessToken'}),
              "Host": 'internal.domain.com'
              // "Cookie": this.userData.cookie
            },
            credentials: 'include'
          }
        ).then((r) => {
          console.log(r);
          console.log((Object.keys(r)));
        }, (e) => {
          console.log(e);
          this.$toast.makeText(e, 'long').show();
        });
      },

结果类似于

JS:   url: '',
JS:   status: 404,
JS:   ok: false,
JS:   statusText: 'Not Found',

但是在正文中,我有默认的帐户选择页面。

我正在寻找有关如何从隐藏在Google OAUTH后面的第三方应用程序获取URL的任何线索。 我什至不知道如何开始。

这两个应用程序(网络和移动应用程序)仅适用于相同的gsuite帐户,因此,如果我能够签名,则我应该能够使用相同的凭据访问webapp。

我应该在GAPI控制台中配置某些内容吗?我都可以完全访问它们。

感谢Pietrek

0 个答案:

没有答案