Method: Platform::Application#create_request_token

Defined in:
app/models/platform/application.rb

#create_request_token(params = {}) ⇒ Object

If your application requires passing in extra parameters handle it here



235
236
237
# File 'app/models/platform/application.rb', line 235

def create_request_token(params={})
  Platform::Oauth::RequestToken.create(params.merge(:application => self))
end