gpt4 book ai didi

Javascript API - 可选 js sdk 模块未定义

转载 作者:行者123 更新时间:2023-12-03 05:10:56 26 4
gpt4 key购买 nike

我正在使用一个API,他们的文档可以找到here 。由于我使用该链接从他们的系统登录和注销,因此我想使用将用户重定向回我的网站的选项。在他们的文档中写道:

The SPiD.Uri module is separated from the main JS SDK, and is optional. It's assigned to the global variable SPiD_Uri when using the vanilla JS variant. The SPiD.Uri module is also available as with AMD on CommonJS packaging.

重定向用户的功能是:

SPiD_Uri.login(redirectUri, clientId);
SPiD_Uri.logout(redirectUri, clientId);

我正在使用 CDN 作为他们的 sdk:

<script type="text/javascript" src="http://cdn.spid.se/sdk/spid-sdk-2.1.0-var.js"></script>

然后在我的函数中,我尝试按照文档中建议的方式重定向用户:

$(document).ready(function(){

var redirectUri = 'http://mywebsite.no/';
var clientId = 'someRandomNumber';

//Initiate SDK
SPiD.init({
client_id: clientId,
server: 'identity-pre.schibsted.com',
});

SPiD_Uri.login(redirectUri, clientId);
SPiD_Uri.logout(redirectUri, clientId);
});

但是,我收到一个错误:

jQuery.Deferred exception: SPiD_Uri is not defined ReferenceError: SPiD_Uri is not defined

最佳答案

为了能够操作重定向,您还需要调用负责该操作的脚本:

<script type="text/javascript" src="http://cdn.spid.se/sdk/spid-uri-2.1.0-var.js"></script>

关于Javascript API - 可选 js sdk 模块未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41824688/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com