How to close facebook feed dialog box when clicking cancel button without using redirect url?

I want to close the facebook feed dialog by clicking the cancel button.

No redirect url

I want to implement it in angularjs.! I have a feed dialog, as shown in the image.

I need to close the dialog shown in the image by clicking the Cancel button. But without the help of a redirect URL. (Since in my case, changing the URL is not possible)

Click to see image.

+6
source share
1 answer

Use the Facebook JS SDK .

FB.ui({ method: 'feed', link: 'https://developers.facebook.com/docs/', caption: 'An example caption', }, function(response){}); 
0
source

Source: https://habr.com/ru/post/987944/


All Articles