Skip to content

Instantly share code, notes, and snippets.

@DaveWM
Last active May 12, 2021 15:55
Show Gist options
  • Save DaveWM/d45a7a1d5de50e336edc5ec34ca66ef1 to your computer and use it in GitHub Desktop.
Save DaveWM/d45a7a1d5de50e336edc5ec34ca66ef1 to your computer and use it in GitHub Desktop.
SalesForce Requests
SalesForce Requests
HTTP Call
success -> Success
400 response -> Exception
404 response -> Exception
401 response -> Refresh Token
other failure -> Wait
Refresh Token
token received -> HTTP Call
Wait
less than 3 retries -> HTTP Call
otherwise -> Exception
Success
Exception
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment