drvonr6573 2018-11-06 14:44
浏览 59
已采纳

如何将URL字符串放在json Viber API php中

I am a newbie developer trying to learn web development. I am currently working on this project where articles from a website get shared automatically to a viber public chat. I am facing this problem where I cannot put the URL in the media. I think this is because its json. I am not sure what I am doing wrong here. I have included.

<?php

$Tid = "-1";
if (isset($_GET['id'])) {
  $Tid = $_GET['id'];
}

$url = 'https://chatapi.viber.com/pa/post';

$jsonData='{
 "auth_token":"4750f56f26a7d2ed-f6b44b76f03d039a-9601b6c9d0d46813",
 "from": "K9/C2Vz12r+afcwZaexiCg==",
 "type":"url",
 "media": "$thisID"
// I want to use $thisID as shown above. But when I
 do so this error appears [ {"status":3,"status_message":"'media' field value is not a valid url."} ] 

// When I use any full form url like https://google.com it works fine 
}';

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonData);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$result = curl_exec($ch);
curl_close($ch);

?>
  • 写回答

1条回答 默认 最新

  • dsshsta97935 2018-11-06 14:55
    关注

    This would work as you are using a single quoted literal.

    "media": "' . $thisID . '" 
    

    But you are always better to make a PHP array or Object and then use json_encode() to create the JSON String like this

    $obj = new stdClass;
    $obj->auth_token = "4750f56f26a7d2ed-f6b44b76f03d039a-9601b6c9d0d46813";
    $obj->from = "K9/C2Vz12r+afcwZaexiCg==";
    $obj->type = 'url';
    $obj->media = $thisID;
    
    $jsondata = json_encode($obj);
    

    RESULT of echo $jsondata;

    {"auth_token":"4750f56f26a7d2ed-f6b44b76f03d039a-9601b6c9d0d46813",
    "from":"K9\/C2Vz12r+afcwZaexiCg==",
    "type":"url",
    "media":"-1"
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?