Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- AdobeConnectMain.allFunctionalities(Trigger.new);
- for(LightiningEd__Login__c c : logins){
- String username1= c.LightiningEd__Username__c;
- System.debug('username:====='+username1);
- String password1 = c.LightiningEd__Username__c;
- System.debug('password:====='+password1);
- String url1 = c.LightiningEd__URL__c;
- System.debug('url:====='+url1);
- String cookie1 = c.LightiningEd__Cookie__c;
- System.debug('cookie:====='+cookie1);
- AdobeLoginAccessToken.postfieldsFuture1(username1,password1,url1,cookie1);
- }
- getLoginAccessToken(username, password, url,accesstoken);
- }
- public static HttpResponse getLoginAccessToken(String username, String password,String url, String accesstoken){
- Http http = new Http();
- HttpRequest req = new HttpRequest();
- HttpResponse res = new HttpResponse();
- ----
- -----
- ----
- }
Add Comment
Please, Sign In to add comment