• Anupama Pundhir
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi,
I want to create a custom home page instead of using standard one. I'm trying to create custom component by using Visualforce Area but it shows me recyclebin and chatter. Is there any workaround to hide rectclebin and chatter from home page.

Thanks
Anupama
public void completeAuthorization() {
        Http h = new Http();
        HttpRequest req = new HttpRequest();
        req.setMethod('POST');
        req.setEndpoint('https://api.xero.com/oauth/AccessToken');
        req.setBody('');
        //req.setHeader('Content-Type','text/html');
        sign(req);
        HttpResponse res = null;
        res = new HttpResponse();
        res = h.send(req);
        System.debug('Response from request token request: ('+res.getStatusCode()+')'+res.getBody());
    }
  • May 13, 2014
  • Like
  • 0