$api->lists();新的 mailchimp 帐户 API 密钥为空
所以我打电话给 $api->lists();在现有帐户上,它返回一组邮件列表。当我将 API 密钥换成具有两个现有列表的新帐户中的一个时,调用相同的 $api->lists();返回空。为什么交换 API 密钥会破坏列表();以及一些可能的解决方案是什么。
我正在使用 MCAPI v1.1 和 PHP。
$apikey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-usx';
$api = new MCAPI($apikey);
dpm($api->lists()); // drupal print message
编辑:解决方案是将 MCAPI 的 v1.1 替换为 v1.3。我并没有真正研究这些版本之间的变化,但升级到 v1.3 为我解决了这个问题。
So I am calling $api->lists(); on an existing account and it returns an array of mailing lists. When I swap out the API key for one in a new account which has two existing lists, calling the same $api->lists(); returns empty. Why would swapping out the API key break the lists(); and what are some possible solutions.
I am using MCAPI v1.1 and PHP.
$apikey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-usx';
$api = new MCAPI($apikey);
dpm($api->lists()); // drupal print message
Edit: The solution to this was to swap out v1.1 for v1.3 of the MCAPI. I didn't really investigate the changes between these versions, but upgrading to v1.3 fixed it for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是将 MCAPI 的 v1.1 替换为 v1.3。我并没有真正研究这些版本之间的变化,但升级到 v1.3 为我解决了这个问题。
The solution to this was to swap out v1.1 for v1.3 of the MCAPI. I didn't really investigate the changes between these versions, but upgrading to v1.3 fixed it for me.