class SparkApi::Authentication::OpenId

Public Instance Methods

authenticate() click to toggle source
# File lib/spark_api/authentication/oauth2.rb, line 145
def authenticate
  raise RuntimeError, "API Authorization not available with an OpenId-only Auth instance"
end
authorization_url(parameters={}) click to toggle source
# File lib/spark_api/authentication/oauth2.rb, line 140
def authorization_url(parameters={})
  params = openid_parameters.merge(parameters)
  build_openid_uri(params)
end
request(method, path, body, options={}) click to toggle source
# File lib/spark_api/authentication/oauth2.rb, line 149
def request(method, path, body, options={})
  raise RuntimeError, "API Data not available with an OpenId-only Auth instance"
end