Paysify 情绪 api 返回 null

Paysify sentiment api returning null

大家好。我有来自 Paysify 的情绪分析 API,其中 returns 一个 JSON 输出,但突然间它现在返回 NULL 作为输出。 请帮帮忙,过去 4 小时我一直在尝试解决此问题,但没有任何进展。

   function detect_sentiment($string){
      $string = urlencode($string);
      $api_key = "< api key >";
      $url = 'https://api.paysify.com/sentiment?api_key='.$api_key.'&string='.$string.'';
      $ch = curl_init();
      curl_setopt($ch, CURLOPT_URL, $url);
      curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
      
      $result = curl_exec($ch);
      $response = json_decode($result,true);
      curl_close($ch);
      return $response;
   }
      
  print_r(detect_sentiment("I love this product"));

谢谢

此问题与您的代码无关。您使用的服务在他们的服务器上有问题。如果您尝试打开 Chrome 浏览器并导航至 https://api.paysify.com/sentiment?api_key={key}&string=I+love+this+product,您将看到该页面因 SSL 错误而无法打开。

请联系您的 API 提供商解决。

PS:从您最初的问题中删除 API 密钥,否则任何人都可以使用它。