php调用返回成功,但是没有收到

linyueb
2017-12-21 02:56 1.7k 0

返回报文

array(3) {
  ["body"]=>
  array(2) {
    ["sendno"]=>
    string(10) "1946453416"
    ["msg_id"]=>
    string(10) "1091221494"
  }
  ["http_code"]=>
  int(200)
  ["headers"]=>
  array(10) {
    [0]=>
    string(15) "HTTP/1.1 200 OK"
    ["Server"]=>
    string(5) "nginx"
    ["Date"]=>
    string(29) "Thu, 21 Dec 2017 02:43:22 GMT"
    ["Content-Type"]=>
    string(16) "application/json"
    ["Transfer-Encoding"]=>
    string(7) "chunked"
    ["Connection"]=>
    string(10) "keep-alive"
    ["X-Rate-Limit-Limit"]=>
    string(3) "600"
    ["X-Rate-Limit-Remaining"]=>
    string(3) "598"
    ["X-Rate-Limit-Reset"]=>
    string(2) "32"
    ["X-JPush-MsgId"]=>
    string(10) "1091221494"
  }
}

日志

Send POST https://api.jpush.cn/v3/push, body:{"platform":"all","audience":{"alias":["99"]},"notification":{"alert":"Hi, Jamjam"},"message":{"msg_content":"\u6d4b\u8bd5","title":"\u4f60\u6709\u65b0\u7684\u804a\u5929\u6d88\u606f","content_type":"text","extras":{"key":"value","0":"jiguang"}},"options":{"sendno":2103544434,"apns_production":false}}, times:1
Send POST https://api.jpush.cn/v3/push, body:{"platform":"all","audience":{"alias":["613"]},"notification":{"alert":"\u4f60\u6709\u4e00\u6761\u65b0\u6d88\u606f"},"message":{"msg_content":"","title":"\u4f60\u6709\u65b0\u7684\u804a\u5929\u6d88\u606f","content_type":"text","extras":{"key":"value"}},"options":{"sendno":404442818,"apns_production":false}}, times:1
Send POST https://api.jpush.cn/v3/push, body:{"platform":"all","audience":{"alias":["613"]},"notification":{"alert":"\u4f60\u6709\u4e00\u6761\u65b0\u6d88\u606f"},"message":{"msg_content":"","title":"\u4f60\u6709\u65b0\u7684\u804a\u5929\u6d88\u606f","content_type":"text","extras":{"key":"value"}},"options":{"sendno":1946453416,"apns_production":false}}, times:1

1个回答

热门排序
  • linyueb
    2017-12-21 02:58
    代码 $client = new \JPush\Client(env('JPUSH_APP_KEY'), env('JPUSH_MASTER_SECRET')); $res = $client->push() 展示全部