我需要从 JavaScript 发出请求,但我只知道如何使用curl
:
curl https://example.com/api -u test_123: -d source=123 -d description="Aaaa Bbbb" -d email="aaaa@example.com"
我知道这-d
是一个 POST 参数,所以我可以:
fetch(`${config.baseUrl}/api/users/profile/`,
{ method: 'POST',
data: JSON.stringify({source: 123, description: 'Aaaa Bbb', email: 'aaaa@example.com'})
})
.then(response => {
// do something
})
如何设置-u
用户?是标题吗?
更新
我在调试模式下发出请求并获得以下输出:
> * Server auth using Basic with user 'sk_test_GAaENEsG0PBmvtHBA2g49sPy'
> > POST /v1/customers HTTP/1.1
> > Authorization: Basic c2tfdGVzdF9HQWFFTkVzRzBQQm12dEhCQTJnNDlzUHk6
> > User-Agent: curl/7.35.0
> > Host: api.stripe.com
> > Accept: */*
> > Content-Length: 94
> > Content-Type: application/x-www-form-urlencoded
所以-u
选项只是转换为base64?