class Restforce::SignedRequest

def self.decode(signed_request, client_secret)

Returns the parsed JSON context.

client_secret - The oauth client secret used to encrypt the signed request.
signed_request - The POST message containing the signed request from Salesforce.

Public: Initializes and decodes the signed request
def self.decode(signed_request, client_secret)
  new(signed_request, client_secret).decode
end