How to deep link a Facebook like from external website -


is possible create link facebook content, such photo, outside of facebook? i've tried play around passing facebook urls standard button tools doesn't seem work. ideas appreciated!

so possible. got working setting facebook app , creating basic authentication. after authentication completed, use js pull access_token param returned url , form via post submit desired photo passing photo's fbid , user's access_token via graph.facebook.com. looks this.

      <form>        <a id="facebook-authentication" href="https://graph.facebook.com/oauth/authorize?type=user_agent&client_id=[your_app_id_goes_here]&redirect_uri=[your_desired_redirect_page_goes_here]&scope=offline_access,publish_stream">        <div id="facebook-authentication-button">        start vote!        </div>        </a>       </form> 

some additional js used automatically submit form upon redirect, that's not necessary setting submission of post request.


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -