用户在使用我的应用程序注册Stripe帐户后,他们将重定向到我的本地主机,并且将authorization_code
添加到URL。然后,我应该使用自己的client_secret
和authorization_code
向其API端点发出POST请求。文档提供的代码说明可以执行以下操作:
curl https://connect.stripe.com/oauth/token \
-d client_secret=blahblah \
-d code="{AUTHORIZATION_CODE}" \
-d grant_type=authorization_code
但是...我到底要在哪里做?在控制器中?这样吗?
def post_to_endpoint(endpoint)
require 'json'
begin
uri = URI.parse(endpoint)
post_params = {
client_secret: "client_secret",
code: "{AUTHORIZATION_CODE}",
grant_type: authorization_code
}
req = Net::HTTP::Post.new(uri.path)
req.body = JSON.generate(post_params)
req["Content-Type"] = "application/json"
http = Net::HTTP.new(uri.host, uri.port)
response = http.start { |htt| htt.request(req) }
rescue => e
puts "failed #{e}"
end
end
在第3步结束时,用户将重定向到我的应用程序上的GET路由,然后我的应用程序应该对Stripe端点进行POST。我需要设置路线吗?我可以在后台执行此操作吗?
答案 0 :(得分:1)
对/oauth/token
的呼叫是您在后端/控制器上进行的操作,用于从Stripe获取授权令牌,您将需要该令牌来代表已连接的帐户进行呼叫。授权您的平台连接到他们的帐户后,您的用户根本不需要参与该呼叫。
由于您使用的是Ruby,因此建议您使用stripe-ruby(官方库)。拥有built-in methods,可将Oauth与Stripe Connect结合使用。
答案 1 :(得分:0)
解决方案!将其编写为模块。它不需要被实例化,因此不需要使用一个类。使用stripe ruby library
也很有帮助我写了一个如下所示的stripe_oauth.rb:
module StripeOauth
def self.connect(code)
Stripe.api_key = ENV["STRIPE_SECRET_KEY"]
Stripe::OAuth.token( {code: code, grant_type: "authorization_code" } )
end
end
然后我从控制器动作Stripe中调用它,将我重定向到:
def welcome
StripeOauth.connect(params[:code])
end
params[:code]
作为URL的一部分发送,所以