• Nitish Kumar 38
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
I am trying to pass JSON string from Lightning controller to apex method

var json_itemlist = JSON.stringify(aMap);
var action = component.get("c.getComponentDetails");
action.setParams({"mapComponents" : string});

I get Input too long error when the size of json_itemlist is greater than 100000. 

Can any one suggest any way to overcome this limitation ?
Hi All,

I am doing HTTP callout for getting the refresh token using connected app oAuth authentication in my apex class. This works perfectly fine in the org but when installing the managed package in another org its not working.

I am struggling to find out the root cause of the issue. Can anyone guide what could be the issue and how it can be fixed ??
Hi All,

I am doing HTTP callout for getting the refresh token using connected app oAuth authentication in my apex class. This works perfectly fine in the org but when installing the managed package in another org its not working.

I am struggling to find out the root cause of the issue. Can anyone guide what could be the issue and how it can be fixed ??