我正在使用 Chargify API 进行付款。我在那里创建了一些产品供订阅。现在我想通过我的站点管理面板管理这些产品价格和其他设置。但我在 Chargify API 中找不到任何功能或任何方式。如果有人知道通过 api 或代码更新此内容的任何方法,请告诉我。
在此先感谢大家,
我很抱歉把它带回来,但我遇到了同样的问题,在我的测试中(目前)我能够更新发出 PUT 请求的产品。
PUT请求必须发送到以下 url :
http://<site>.chargify.com/products/<product_id>
并且只在正文中发送需要更新的字段。
例子:
PUT https://mysite.chargify.com/products/7358179 HTTP/1.1
User-Agent: Fiddler
Authorization: <your authorization token>
Accept: application/xml
Content-Type: application/xml
Host: mysite.chargify.com
Content-Length: 106
<?xml version="1.0" encoding="utf-8"?>
<product>
<price_in_cents>2100</price_in_cents>
</product>
希望这有助于像我一样使用搜索引擎找到此页面的其他用户。