Guest User

Untitled

a guest
Feb 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. AdobeConnectMain.allFunctionalities(Trigger.new);
  2.  
  3. for(LightiningEd__Login__c c : logins){
  4.  
  5. String username1= c.LightiningEd__Username__c;
  6. System.debug('username:====='+username1);
  7. String password1 = c.LightiningEd__Username__c;
  8. System.debug('password:====='+password1);
  9. String url1 = c.LightiningEd__URL__c;
  10. System.debug('url:====='+url1);
  11. String cookie1 = c.LightiningEd__Cookie__c;
  12. System.debug('cookie:====='+cookie1);
  13.  
  14. AdobeLoginAccessToken.postfieldsFuture1(username1,password1,url1,cookie1);
  15. }
  16.  
  17. getLoginAccessToken(username, password, url,accesstoken);
  18. }
  19. public static HttpResponse getLoginAccessToken(String username, String password,String url, String accesstoken){
  20.  
  21. Http http = new Http();
  22. HttpRequest req = new HttpRequest();
  23. HttpResponse res = new HttpResponse();
  24. ----
  25. -----
  26. ----
  27. }
Add Comment
Please, Sign In to add comment