Method: Echosign::Credentials#authorize_url
- Defined in:
- lib/echosign/credentials.rb
#authorize_url(redirect_uri, scope, state = nil) ⇒ Echosign::Credentials
Build an authorization endpoint URL for EchoSign’s OAuth2 provider
The redirect_uri must be specified on the app’s OAuth Configuration page.
41 42 43 44 45 46 47 |
# File 'lib/echosign/credentials.rb', line 41 def (redirect_uri, scope, state = nil) return @client.auth_code.( redirect_uri: redirect_uri, scope: scope, state: state ) end |