- match '/oauth/revoke' => 'oauth#revoke'
- match '/oauth/authorize' => 'oauth#authorize', :as => :authorize
- match '/oauth/token' => 'oauth#token', :as => :token
- match '/oauth/request_token' => 'oauth#request_token', :as => :request_token
- match '/oauth/access_token' => 'oauth#access_token', :as => :access_token
- match '/oauth/test_request' => 'oauth#test_request', :as => :test_request
+ match '/oauth/revoke' => 'oauth#revoke', :via => [:get, :post]
+ match '/oauth/authorize' => 'oauth#authorize', :via => [:get, :post], :as => :authorize
+ match '/oauth/token' => 'oauth#token', :via => :get, :as => :token
+ match '/oauth/request_token' => 'oauth#request_token', :via => [:get, :post], :as => :request_token
+ match '/oauth/access_token' => 'oauth#access_token', :via => [:get, :post], :as => :access_token
+ match '/oauth/test_request' => 'oauth#test_request', :via => :get, :as => :test_request