Write on user timeline in facebook javascript SDK - facebook-javascript-sdk

I want to let my Facebook App post on user's timeline like this. How to do that with Facebook JavaScript API?

Related

How can I embed my latest Facebook and Instagram posts in a Vue.js website

While I was able to embed twitter posts very easily, Facebook and Instagram seems not so.
Please I need a guide on how to embed all my latest Facebook and Instagram posts in a Vue.js website.
I've gone through their documentation, but still unable to.
I could have managed the steps using a token, and design my interface, but the token expires after 1 hour.
Thanks.

Is there any way to authenticate users with instagram in my ionic app?

I want to know if someone could already do something like this, because the new Instagram basic display API is kind of different. Thanks in advance
I've been working in a Ionic 3 app, which authenticated users with Instagram API. But now Instagram API is no longer working, and was migrated to Facebook.
With the new API, Facebook no longer allows users to authenticate into an app using the Instagram Basic Display API, and the Graph API for Businesses and Creators requires a Facebook token.
I suppose they now want you to only use the Facebook auth flow to authenticate your users for your app, and then have them log in again to Instagram for Basic Display after your primary authentication.
"Data returned by the API cannot be used to authenticate your app
users or log them into your app. If you need an authentication
solution we recommend using Facebook Login instead."
https://developers.facebook.com/docs/instagram-basic-display-api
&
"All endpoint requests must include a Facebook User access token."
https://developers.facebook.com/docs/instagram-api/overview

Publish on facebook and twitter like instagram

I am making a social media app in react native where I want to add feature to publish the post on Facebook and Twitter same as in Instagram.
As I have gone through many articles and documentation it says that publish_actions has been deprecated and we should use Share Dialogs but I don't want that popup coming, it should directly post on Facebook. How to achieve that and how does Instagram does it ?
From Facebook documentations:

Can I use the Instagram API to post from my Mobile app straight to Instagram

We would like to have our users be able to click a button on our app and then open up or post straight to Instagram. Can this be done with the current API tey have accessible to developers?
No, not possible there is no API to post directly to Instagram.
You can open Instagram app with a image u want to post from your app: https://www.instagram.com/developer/mobile-sharing/iphone-hooks/

QuickBlox login with Facebook's own SDK?

Is it possible to use QuickBlox iOS SDK in conjunction with Facebook's iOS SDK to log into service?
Or rather, my real intention is to be able to to use Facebook to find the user's liked page. So I need to create Facebook session. Anyway to achieve this?
You can login via Facebook or Twitter. More details there http://quickblox.com/developers/SimpleSample-users-ios#Sign_In_.26_Social_authorization
In this case QB-user will contain facebookID field.
For creating facebook session you need use facebook sdk. Quickblox doesn't support it.
You can only mix this SDKs to achieving your purposes.
You can use method 'Login with Facebook access token'
[QBUsers logInWithSocialProvider:#"facebook" accessToken:#"AAAGmLYiu1lcBADxROiXg4okE80FQO1dJHglsbNT63amxmABnmBmhN6ACbgD7qNC3H4Y9GmZAdoSfPUkI9O7ZBJvKQCewNZAp3SoxKCNIMwQZDZD" accessTokenSecret:nil delegate:self];
In this case you need to use Facebook SDK to obtain access token.