gpt4 book ai didi

javascript - 获取本地 html 文件的访问 token

转载 作者:行者123 更新时间:2023-11-28 02:35:35 25 4
gpt4 key购买 nike

$.getScript('http://connect.facebook.net/en_US/all.js', function(){

FB.init({
appId : 'my app id',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});

});

这会导致错误:应用程序的设置不允许一个或多个给定的 URL。它必须与网站 URL 或 Canvas URL 匹配,或者该域必须是应用程序域之一的子域。

我的目标是在本地 html 文件上生成访问 token 。我在 facebook 上的应用程序设置不允许“localhost”或任何类似的内容。

这是否可行,或者我是否需要本地网络服务器?

最佳答案

我做了更多研究,我想说这是最简单的方法:

$.ajax({

url: 'https://graph.facebook.com/oauth/access_token?client_id=<APPID>&client_secret=<APP SECRET>&grant_type=client_credentials',
dataType: 'text',
success: function(tokenstring){

var token = tokenstring.split('=')[1];

}

});

关于javascript - 获取本地 html 文件的访问 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13513376/

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