到目前为止我所知道的是我必须向苹果服务器发送一个 POST 请求。
我如何或在哪里可以获得 merchIdentityCert 证书和密钥?
注意:我将从 PHP 发送 post 请求
const options= {
url: endpointURL,
cert: merchIdentityCert,
key: merchIdentityCert,
method: 'post',
body:{
merchantIdentifier: "merchant.com.example.mystore",
displayName: "MyStore",
initiative: "web",
initiativeContext: "mystore.example.com"
},
json: true,
}