Start Facebook OAuth
Initiate the OAuth flow for Facebook account connection.
GET
/
social-media-posting
/
oauth
/
facebook
/
start
Start Facebook OAuth
curl --request GET \
--url https://services.leadconnectorhq.com/social-media-posting/oauth/facebook/start \
--header 'Authorization: <authorization>' \
--header 'Version: <version>'const options = {
method: 'GET',
headers: {Authorization: '<authorization>', Version: '<version>'}
};
fetch('https://services.leadconnectorhq.com/social-media-posting/oauth/facebook/start', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/social-media-posting/oauth/facebook/start"
headers = {
"Authorization": "<authorization>",
"Version": "<version>"
}
response = requests.get(url, headers=headers)
print(response.text)Last modified on March 8, 2026
Was this page helpful?
Start Facebook OAuth
curl --request GET \
--url https://services.leadconnectorhq.com/social-media-posting/oauth/facebook/start \
--header 'Authorization: <authorization>' \
--header 'Version: <version>'const options = {
method: 'GET',
headers: {Authorization: '<authorization>', Version: '<version>'}
};
fetch('https://services.leadconnectorhq.com/social-media-posting/oauth/facebook/start', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://services.leadconnectorhq.com/social-media-posting/oauth/facebook/start"
headers = {
"Authorization": "<authorization>",
"Version": "<version>"
}
response = requests.get(url, headers=headers)
print(response.text)