Square-Connect Webhook PHP没有数据发布

时间:2015-05-14 13:19:02

标签: webhooks square-connect

我的Square-Connect Webhooks已经完成了。我正在接收POST到我的服务器脚本。然而$ _POST数组似乎是空的。

这是我的代码:

<?php
  $sRM = $_SERVER['REQUEST_METHOD'] ;
  $sH = null ;
  
  if ( 'PUT' == $sRM )
  {
    $sH = file_get_contents( 'php://input' ) ;
  }
  else if ( 'POST' == $sRM )
  {
    $sS = '' ;
    
    foreach( $_POST as $sK => $sV )
    {
      $sH .= $sK.'=>'.$sV ;
      $sS = ', ' ;
    }
  }
  
  if ( ConnectDB() )
  {
    $_SESSION[ 'DB' ]->real_escape_string( trim( $sH ) ) ;  //  Prevent SQL Injection
    $rR = $_SESSION[ 'DB' ]->query( 'INSERT INTO `Hooks` ( `Method`,`Message` ) VALUES ( "'.$sRM.'", "'.$sH.'" ) ;' ) ;
  }
?>

谢谢, 罗布

1 个答案:

答案 0 :(得分:1)

square docs表示POST主体将采用JSON格式,因此PHP不会像表单一样解析它并填充$ _POST数组。你需要做这样的事情:

$json = file_get_contents('php://input');
$obj = json_decode($json);

Reading JSON POST using PHP的答案所述。