Open Connector
All tools

Facebook

Connect to Facebook to read the user profile.

facebookv1.0.08 tools

Authentication

MethodKindStatusDetails
OAuth 2.0oauth2available

Call a tool

import { createClient } from "@open-connector/sdk";const oc = createClient({  baseUrl: "https://api.openconnector.dev",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({  slug: "FACEBOOK_COMMENT_DELETE",  connectedAccountId: "conn_...",  arguments: { /* match this tool's input schema */ },});
import Composio from "@composio/client";const composio = new Composio({  baseURL: "https://api.openconnector.dev/composio",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("FACEBOOK_COMMENT_DELETE", {  connected_account_id: "conn_...",  arguments: { /* match this tool's input schema */ },});
oc tools execute FACEBOOK_COMMENT_DELETE --data '{ }'

Tool catalog

Available tools

8 callable operations

Delete Facebook commentFACEBOOK_COMMENT_DELETEDeletes a Facebook comment when the connected Page context has moderation permissions.

Deletes a Facebook comment when the connected Page context has moderation permissions.

Authentication

Connected account required

Scopes

pages_manage_engagementpages_read_engagement

Tags

commentsmoderationdelete
Update Facebook commentFACEBOOK_COMMENT_UPDATEUpdates a Facebook comment message or hides/unhides a Page comment.

Updates a Facebook comment message or hides/unhides a Page comment.

Authentication

Connected account required

Scopes

pages_manage_engagementpages_read_engagement

Tags

commentsmoderationwrite
Get Facebook profileFACEBOOK_GET_MEGets the authenticated Facebook user's profile from Graph API.

Gets the authenticated Facebook user's profile from Graph API.

Authentication

Connected account required

Scopes

emailpublic_profile

Tags

profileread
Create Facebook page feed postFACEBOOK_PAGE_FEED_CREATEPublishes or schedules a post on a Facebook Page feed.

Publishes or schedules a post on a Facebook Page feed.

Authentication

Connected account required

Scopes

pages_manage_postspages_read_engagementpages_show_list

Tags

pagesfeedwrite
List Facebook page feedFACEBOOK_PAGE_FEED_LISTLists recent posts from a Facebook Page feed.

Lists recent posts from a Facebook Page feed.

Authentication

Connected account required

Scopes

pages_read_engagement

Tags

pagesfeedread
Create Facebook page photoFACEBOOK_PAGE_PHOTO_CREATEUploads a photo to a Facebook Page from a URL.

Uploads a photo to a Facebook Page from a URL.

Authentication

Connected account required

Scopes

pages_manage_postspages_read_engagementpages_show_list

Tags

pagesphotoswrite
Create Facebook page videoFACEBOOK_PAGE_VIDEO_CREATECreates a Facebook Page video from a public file URL or upload session parameters.

Creates a Facebook Page video from a public file URL or upload session parameters.

Authentication

Connected account required

Scopes

pages_manage_postspages_read_engagementpages_show_list

Tags

pagesvideoswrite
List Facebook pagesFACEBOOK_PAGES_LISTLists pages available to the authenticated Facebook user.

Lists pages available to the authenticated Facebook user.

Authentication

Connected account required

Scopes

pages_show_list

Tags

pagesread

Provider resources