我正在尝试使用Postman探索mixpanel API。
这是我应该呼叫的网址:
curl https://mixpanel.com/api/2.0/segmentation/ \
-u YOUR_API_SECRET: \
-d from_date="2016-02-11" -d to_date="2016-02-11" -d event="Viewed Page"
我能够使它适用于卷曲,但不适用于Postman。
我找不到允许我无需登录即可使用密码的授权。
这里有帮助吗?
答案 0 :(得分:1)
在curl的手册页中:
-u, --user <user:password>
也许用户被设置为YOUR_API_SECRET
您是否尝试过使用它作为Postman中的用户名?
仅在API上输入密码是相当不安全的