8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

尝试使用 Meta API 在 Facebook 页面上创建包含多个图像和视频的 Facebook 帖子

Igor Kondrasovas 2月前

30 0

我正在实现一个类,该类使用对 Meta API 的请求来处理创建 Facebook 帖子。该过程分为两个阶段,分别针对图像和视频。遵循文档...

我正在实现一个类,该类使用对 Meta API 的请求来处理创建 Facebook 帖子。该过程分为两个阶段,分别针对图像和视频。按照文档,必须为每个图像或视频进行独立上传。随后,使用每个请求响应中返回的 ID,使用 attachment_media 和 {\'media_fbid\':\'image_id|video_id\'} 列表生成数据。当涉及到图像时,任务流程正常运行,没有任何问题。但是,当视频位于 attachment_media 列表中时,就会出现问题。有人知道以下错误的解决方案是什么吗?

{'error': {'message': '(#10) Application does not have permission for this action', 'type': 'OAuthException', 'code': 10, 'fbtrace_id': 'ApRVBhzB6YA2XsOYRSa6DJE'}}

这里的课程:

class FacebookHelper:
    def __init__(self, publication: Publication, business: Business = None):
        self.publication = publication
        if not business:
            self.business = self.publication.business
        else:
            self.business = business
        self.update_business_access_token()
        self.write_timeout = get_configuration_by_key("write_timeout")

    def update_business_access_token(self):
        if (
            not self.business.page_access_token
            or not self.business.session_access_token_date
            or now() - self.business.session_access_token_date > timedelta(hours=2)
        ):
            with httpx.Client(
                base_url=get_configuration_by_key("meta_api_url")
            ) as client:
                params = {
                    "fields": "access_token",
                    "access_token": self.business.related_meta_app.access_token,
                }
                try:
                    response = client.get(url=self.business.page_id, params=params)
                    data = response.json()
                    self.business.page_access_token = data["access_token"]
                    self.business.session_access_token_date = now()
                    self.business.save()
                except Exception as e:
                    raise

    def post_publication(self):
        with httpx.Client(base_url=get_configuration_by_key("meta_api_url")) as client:
            params = {
                "access_token": self.business.page_access_token,
                "published": True,
            }
            try:
                response = client.post(
                    url=f"{self.business.page_id}/feed",
                    params=params,
                    data=self.generate_data(),
                )
                data = response.json()
                print(data)
                self.publication.post_id = data["id"]
                self.publication.published = True
                self.publication.publish_hour = None
                self.publication.publish_date = None
                self.publication.ready_to_publish = False
                self.publication.published_date = now()
                self.publication.last_publish_attempt_date = None
                self.publication.last_publish_attempt_error = None
            except Exception as e:
                self.publication.last_publish_attempt_date = now()
                self.publication.last_publish_attempt_error = f"{type(e)}"
                self.publication.last_publish_attempt_error_description = str(e)
            finally:
                self.publication.publishing = False
                self.publication.save()

    def post_image(self, image: Image):
        with httpx.Client(base_url=get_configuration_by_key("meta_api_url")) as client:
            files = {
                "file": image.image.file.read(),
            }
            data = {
                "access_token": self.business.page_access_token,
                "published": False,
            }
            try:
                response = client.post(
                    url=f"{self.business.page_id}/photos", files=files, data=data
                )
                data = response.json()
                print(data)
                image.post_id = data["id"]
                image.published = True
                image.published_date = now()
                image.last_publish_attempt_date = None
                image.last_publish_attempt_error = None
            except Exception as e:
                image.last_publish_attempt_date = now()
                image.last_publish_attempt_error = f"{type(e)}"
                image.last_publish_attempt_error_description = str(e)
            finally:
                image.save()

    def post_video(self, video: Video):
        timeout = httpx.Timeout(60, write=float(self.write_timeout))
        with httpx.Client(
            base_url=get_configuration_by_key("meta_video_api_url")
        ) as client:
            files = {
                "source": video.video.file.open('rb'),
            }
            data = {
                "access_token": self.business.page_access_token,
                "published": False,
            }
            try:
                response = client.post(
                    url=f"{self.business.page_id}/videos",
                    files=files,
                    data=data,
                    timeout=timeout,
                )
                data = response.json()
                print(data)
                video.post_id = data["id"]
                video.published = True
                video.published_date = now()
            except Exception as e:
                video.last_publish_attempt_date = now()
                video.last_publish_attempt_error = f"{type(e)}"
                video.last_publish_attempt_error_description = str(e)
            finally:
                video.save()

    def generate_data(self):
        data = {}
        media = []
        if self.publication.text:
            data["message"] = self.publication.text
        for image in self.publication.image_set.filter(published=True):
            media.append({"media_fbid": image.post_id})
        for video in self.publication.video_set.filter(published=True):
            media.append({"media_fbid": video.post_id})
        data["attached_media"] = json.dumps(media)
        print(data)
        return data

    def multiple_post(self):
        for image in self.publication.image_set.filter(published=False):
            self.post_image(image)
        for video in self.publication.video_set.filter(published=False):
            self.post_video(video)
        self.post_publication()
帖子版权声明 1、本帖标题:尝试使用 Meta API 在 Facebook 页面上创建包含多个图像和视频的 Facebook 帖子
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Igor Kondrasovas在本站《facebook》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 因此,我想从我不拥有或我不是管理员的 Facebook 页面获取 Facebook 帖子的反应计数。我尝试了 Graph API Explorer,但找不到我认为我需要的一些权限

    因此,我想从我不拥有或不是管理员的 Facebook 页面获取 Facebook 帖子的反应数量。

    我尝试了 Graph API Explorer,但找不到我认为需要的一些权限,例如 read_insights。还有其他方法可以完成我想要的操作吗?

  • 我正在尝试设置一个 webhook,以使用 Facebook Graph API 在 Instagram 商业帐户上接收新媒体帖子(如照片或视频)的通知。以下是我遵循的流程:我

    我正在尝试设置一个 webhook,以使用 Facebook Graph API 接收 Instagram 商业帐户上的新媒体帖子(如照片或视频)的通知。以下是我遵循的流程:

    我确认 Instagram 帐户是一个商业帐户并且链接到 Facebook 页面。我确保页面访问令牌具有必要的权限(instagram_basic、pages_show_list、pages_read_engagement)。我尝试使用以下 POST 请求订阅媒体对象更新:

    https://graph.facebook.com/${page.id}/subscribed_apps?subscribed_fields=${page_subscriptions}&access_token=${page.access_token}
    

    但是,我没有收到带有参数 page_subscription=media 的请求的任何响应 - 没有成功确认,也没有错误消息。我可能选择了错误的 page_subscription。如果能提供任何提示,我将不胜感激

  • 我想在 React 中实现一个 SignalR 客户端。我有一个提供 SignalR Hub 的 aspnet API。使用 C# SignalR 客户端,我可以连接集线器并发送+接收消息。因此,似乎

    我想在 React 中实现一个 SignalR 客户端。

    我有一个提供 SignalR Hub 的 aspnet API。使用 C# SignalR 客户端,我可以连接集线器并发送+接收消息。因此,看来 SignalR 服务和 CORS 是正确的。

    但是当我想要连接 React 时出现以下错误:

    Debug: HubConnection failed to start successfully because of error 'Error: Unable to connect 
    to the server with any of the available transports.
    WebSockets failed: 
    Error: 'WebSockets' is disabled by the client.
    ServerSentEvents failed: Error: 'ServerSentEvents' is disabled by the client.
    LongPolling failed: Error: 'LongPolling' is disabled by the client.'.
    

    我的反应代码:

    import { HubConnectionBuilder,LogLevel,HttpTransportType } from '@microsoft/signalr';
    import { getUserAccessToken } from '../auth/UserManager';
    
    export function ConnectToSignalR(){
       return  new HubConnectionBuilder()
            .withUrl('http://localhost:18198/messagehub',options=> {
                options.skipNegotiation=false;
                options.transport = HttpTransportType.WebSockets;
                options.accessTokenFactory = ()=>getUserAccessToken();
            return options;})
            .withAutomaticReconnect()
            .configureLogging(LogLevel.Trace)
            .build();
    }
    
    export function startSignalRConnection(signalRConnection){
        if (signalRConnection) {
            signalRConnection.start()
                  .then(result => {
                      console.log('SingnalR','Connected!');
        
                      signalRConnection.on('TimeWarningMessage', message => {
                         console.log(message);
                      });
                  })
                  .catch(e => console.log('SingalR Connection failed: ', e));
                }
            
    }
    

    应用程序启动后,通过 useEffect 钩子在 React 应用程序的 App.js(主要组件)中调用代码。

    “被客户端禁用”是什么意思?有没有办法禁用这些东西?我测试的浏览器是 Edge 和 Chrome 的最新版本,两者都有同样的问题。React 包的版本是 8.0.7,在 asp net core 端的后端,我使用的是 NET8

  • fgb 2月前 0 只看Ta
    引用 5

    这与 JWTBearer 无关,即使我完全删除 Backend Hub 中的身份验证,错误仍然存​​在。我刚刚发现,我的选项不正确。请参阅我的新帖子以获取解决方案。

  • 我刚刚发现,我的选择不正确。如果我使用互联网上的另一个示例,它就可以起作用。请参阅:

    export function ConnectToSingalR(){
       return  new HubConnectionBuilder()
            .withUrl('http://localhost:18198/messagehub', {
                accessTokenFactory: () => {              
                    return getUserAccessToken();
                }
            })
            .withAutomaticReconnect()
            .configureLogging(LogLevel.Trace)
            .build();
    }
    

    但我不明白为什么选项部分会产生此错误。如果它不正确,那好吧,是我的错,但我只是想得到一个更好、更易理解的错误消息……

返回
作者最近主题: