通过 Delphi 的 TIdHTTP 访问 Clickbank API?
我正在尝试从我的 Delphi 项目访问 ClickBank API,以检查客户是否拥有有效的订阅。
我在此处找到了 API 文档,但有没有德尔福示例。所以我试图创建我自己的小例子,但是我无法用 Indy 的 TIdHTTP 弄清楚它。
谁能指出我正确的方向,也许可以举一个最小的例子?
PS:我尝试查看 C# 示例,但无法将其移植到 Delphi。
I am trying to access the ClickBank API from my Delphi project, to check if a customer has a valid subscription.
I found the API Documentation here, but there are no Delphi examples. So I am trying to create my own little example, however I just cant figure it out with Indy's TIdHTTP.
Could anyone point me in the right direction, perhaps set up a minimal example?
P.S: I tried looking at the C# sample, however I cant port it to Delphi.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ClickBank 示例 C# 位于此处 https://sandbox.clickbank.com/api_12_examples/api_example.csharp
PHP 版本是
https://sandbox.clickbank.com/api_12_examples/api_example.php
您会看到他们在这里没有做太多设置...只是设置两个标头并执行 GET。
在 Delphi 中 - 一个快速演示是将 TIdHTTP1 客户端以及按钮和备忘录放在表单上。然后单击按钮(其中 xxx= 您的开发人员密钥,yyy= 您的 api 密钥)执行相同操作 - 设置两个标头并执行 GET:
ClickBank sample C# is found here https://sandbox.clickbank.com/api_12_examples/api_example.csharp
The PHP version is
https://sandbox.clickbank.com/api_12_examples/api_example.php
You'll see that they aren't doing much setup here... just setting two headers and performing a GET.
In Delphi - a quick demo is to drop a TIdHTTP1 client on a form, along with a Button and a Memo. Then on an onclick of the button (where xxx= your developer key and yyy= your api key) do the same - set two headers and perform a GET: