我试图使用PayPal的ruby gem来完成这样一个简单的任务:
1 - 用户使用PayPal OAuth登录我的应用程序。
2 - 用户授权我的应用访问其帐户。
3 - 我的应用程序发出一个简单的请求,列出该用户的10个交易。
我按照官方PayPal的github存储库(https://github.com/paypal/PayPal-Ruby-SDK)的说明进行了
require 'paypal-sdk-rest'
include PayPal::SDK::REST
include PayPal::SDK::OpenIDConnect
# Update client_id, client_secret and redirect_uri
PayPal::SDK.configure({
:openid_client_id => "client_id",
:openid_client_secret => "client_secret",
:openid_redirect_uri => "http://google.com"
})
# Generate URL to Get Authorize code
puts Tokeninfo.authorize_url( :scope => "openid profile" )
# Create tokeninfo by using AuthorizeCode from redirect_uri
tokeninfo = Tokeninfo.create("Replace with Authorize Code received on redirect_uri")
puts tokeninfo.to_hash
# Refresh tokeninfo object
tokeninfo = tokeninfo.refresh
puts tokeninfo.to_hash
在这个简单的设置代码之后,我试图获取用户的交易,但我不能仅使用下面代码中的付款实体来执行此操作:
Payment.all(count: 10)
它返回错误:
PayPal::SDK::Core::Exceptions::UnauthorizedAccess: Failed. Response code = 401. Response message = Unauthorized. Response debug ID = 409003e14dd9a, 409003e14dd9a.
那么,如何将用户验证到我的应用程序中,然后使用他的令牌进行API操作?
答案 0 :(得分:0)
我不确定你是否需要这一切。
这就是我所做的:
include PayPal::SDK::REST
PayPal::SDK.configure({
openid_client_id: "client_id",
openid_client_secret: "client_secret",
openid_redirect_uri: "http://google.com"
})
Payment.all
=>
Request[get]: https://api.sandbox.paypal.com/v1/payments/payment
Request.body=null request.header={"X-PAYPAL-SANDBOX-EMAIL-ADDRESS"=>"Platform.sdk.sell@gmail.com", "Authorization"=>"Bearer A101.CLf7NBF8CWMt0Lt4tc9OzrKs9RmGB8wuDBw11n1Ucn8DWTyws8A-nM5b68NYpn8F.qiud2q4fOpca2RSfhZElDV4fzLm", "Content-Type"=>"application/json", "User-Agent"=>"PayPalSDK/PayPal-Ruby-SDK 1.4.4 (paypal-sdk-core 1.4.4; ruby 2.3.0p0-x86_64-linux;OpenSSL 1.0.1f 6 Jan 2014)"}
Response[200]: OK, Duration: 30.002s
Response.body={"payments":[{"id":"PAY-
...etcetc
值得注意的是,此时它只显示通过REST API创建的付款。
虽然401是未经授权的,但很可能你的信息不正确。确保您的client_id和client_secret正确无误 - 您可以在开发人员仪表板下找到此信息。
答案 1 :(得分:0)
它现在使用Transactions API支持此功能。