gpt4 book ai didi

php - 将图像上传到特定的 Facebook 相册

转载 作者:搜寻专家 更新时间:2023-10-31 21:15:43 26 4
gpt4 key购买 nike

我在使用权限上传到特定 Facebook 相册时遇到问题。

我被设置为特定 Facebook 页面的管理员,但是每当我尝试上传照片时,我似乎无法获得执行此操作的权限。

我得到的错误是:

Fatal error: Uncaught OAuthException: (#120) Invalid album id thrown

如果我使用 Graph 浏览器进行探索,我可以在不需要任何访问 token 的情况下查看此相册。

我使用的 URL 是 https://graph.facebook.com/albumId/photos

我要上传的相册是我在 Facebook 中创建的 Facebook 页面中的相册。

我设置的权限是:

  • 用户照片
  • friends_photos
  • publish_actions
  • 管理页面
  • 发布流
  • 照片上传

感谢任何帮助。

最佳答案

首先,检查用户是否登录:

function getLoginStatus() {  
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
// the user is logged in and connected to your
// app, and response.authResponse supplies
// the user's ID, a valid access token, a signed
// request, and the time the access token
// and signed request each expire
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;

getPageAccess();

} else if (response.status === 'not_authorized') {
// the user is logged in to Facebook,
//but not connected to the app
logIn();
} else {
// the user isn't even logged in to Facebook.
logIn();
}
});
}

然后获取与用户关联的页面访问 token :

function getPageAccess() {               
FB.api('/PAGE_ID?fields=access_token', function (resp) {
var pageAccessToken = resp.access_token;
});
}

关于php - 将图像上传到特定的 Facebook 相册,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9260443/

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