Vue.js & Django Social Scheduler: connect Facebook Pages with API url

  • last month
To publish posts on Facebook posts from Vue.js & Django Social Scheduler application I need first to connect the Facebook Pages in my application. To do this, I need to redirect the user to the Facebook Login page and request it to grant permissions for Facebook Pages read and publish to my Facebook Application which I'm using in my Vue.js & Django Social Scheduler application.

Gist Url https://gist.github.com/InterTuts/2479a5bdad71cbb95e74c18fc345b73b
Transcript
00:00To be able to publish posts on Facebook pages from my application,
00:08I need first to connect the Facebook pages where will be published the posts.
00:17In this video, I will explain how I have created the redirect URL
00:27which is used to request the deauthorization code required to get an access token
00:37which is used then for Facebook pages connection.
00:46The redirect URL is called when I click on this button.
00:53I'm using Python to create the redirect URL
01:02which redirects the user to grant access to my application to access these permissions.
01:16For pages list, posts publish and this is used to access the data of business.
01:33In the redirect URL I have to provide the client ID of the Facebook application.
01:45A unique state.
01:49A response type.
01:53This is the redirect URL which should be added in the Facebook application.
02:03And for the scope, I'm using these permissions.
02:10Then, when the user will be redirected to this URL,
02:20I will use the deauthorization code to exchange for an access token.

Recommended