在带有承载授权的php中使用curl

时间:2016-11-05 01:07:54

标签: php curl ionic-framework

我想使用curl与php将推送消息发送到离子应用程序。这是我在命令行上使用的命令:

curl -X POST -H "Authorization: Bearer XXXXXX.AUTH.XXXXXXX" -H "Content-Type: application/json" -d '{
    "tokens": ["XXXX.DEVICE_TOKEN.XXXX"],
    "profile": "XXXX.PROFILE.XXXXX",
    "notification": {
        "message": "This is a test-message",
        "title": "This is a Test Title"
    }
}' "https://api.ionic.io/push/notifications"

如何在php中执行此命令?我找到了一些例子,但没有一个可行。

0 个答案:

没有答案