我正在尝试围绕Telepass的Telegram OAuth 2集成构建Omniauth。
我的代码当前如下所示:
require 'omniauth-oauth2'
module Omniauth
module Strategies
class Telepass < OmniAuth::Strategies::OAuth2
option :client_options, {
:site => 'https://telepass.me/api/user',
:authorize_url => 'https://telepass.me/oauth/authorize',
:token_url => 'https://telepass.me/oauth/token'
}
def request_phase
redirect client.auth_code.authorize_url({:redirect_uri => callback_url}.merge(authorize_params))
end
def authorize_params
super.tap do |params|
%w[scope client_options].each do |v|
if request.params[v]
params[v.to_sym] = request.params[v]
end
end
end
end
uid { raw_info['id'].to_s }
info do
{
'first_name' => raw_info['first_name'],
'last_name' => raw_info['last_name'],
'username' => raw_info['username'],
'avatar' => raw_info['avatar'],
}
end
extra do
{:raw_info => raw_info}
end
def raw_info
access_token.options[:mode] = :query
@raw_info ||= access_token.get('user').parsed
end
def callback_url
full_host + script_name + callback_path
end
end
end
end
OmniAuth.config.add_camelization 'telepass', 'Telepass'
但是,它会给出“无效的凭据” 错误。
我有两个文件可供参考。一个已在Node.js的Passport中实现,另一个已在Laravel中实现。
Passport.js Integration sample
我正在尝试对Omniauth进行相同操作。但是如您所见,我无法使用Authorization : Bearer : Token
发出其他GET请求。
您能帮我解决这个问题吗?拥有Telegram的OmniAuth gem真是太好了。