function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vivek Ukidve 7Vivek Ukidve 7 

how to get access token and data from facebook?

    i want to import facebook account related data to salesforce using apex code.
I have used  facebook toolkit3.0.

I have tried following code to get access token


public class Facebooklogin

   
    public string acesstoken{get;set;}
  public FacebookLogin()
  {
      string token;
     token=FacebookToken.getAccessToken();
     acesstoken=token;
   
  }

}
 its not working..

i cant find solution. so please anyone can help...  thanks in advance
Andy BoettcherAndy Boettcher
Hello!  Try reading through this post and check out the walkthrough link (1st comment) to see if that gives you any hints to the cause of your issue.