我已成功获得oAuth在我的Phonegap应用程序中工作。截至目前,我可以使用oAuth获取access_token,但现在我被卡住了。如何使用此access_token发出API请求?我正在尝试访问Stripe API(https://stripe.com/docs/api)。
我知道我需要签署请求,但是如何在Javascript中执行此操作?
答案 0 :(得分:0)
我认为你可以在请求中添加key = your_stripe_api_key_here。例如,
https://api.stripe.com/v1/customers?key=your_stripe_api_key_here
注意:我不确定这种方法有多安全。