Skip to content

Commit 2b856b8

Browse files
committed
Fix Missing_OAuth_Token error via realdoug/omniauth-salesforce#12
1 parent b050495 commit 2b856b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/omniauth/strategies/salesforce.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def auth_hash
6767
def raw_info
6868
access_token.options[:mode] = :query
6969
access_token.options[:param_name] = :oauth_token
70-
@raw_info ||= access_token.post(access_token['id']).parsed
70+
@raw_info ||= access_token.get(access_token['id']).parsed
7171
end
7272

7373
extra do

0 commit comments

Comments
 (0)