Guest User

Untitled

a guest
Jun 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public PageReference requestCode(){
  2. String endpoint='https://login.salesforce.com/services/oauth2/authorize';
  3. endpoint=endpoint+'?response_type=code&client_id='+clientId;
  4. endpoint=endpoint+'&redirect_uri='+redirectUri;
  5. PageReference p=new PageReference(endpoint);
  6. return p;
  7. }
Add Comment
Please, Sign In to add comment