如何在WordPress中集成第三方API


How to Integrate 3rd party API in Wordpress

我正在使用wordpress,我想将SMS API集成到我的wordpress网站中。任何人都可以帮助知道在哪里(在哪个文件中)编写集成代码以及集成 SMS API 的代码。

我的短信 API 网址是 : http://www.elitbuzzsms.com/app/smsapi/index.php?key=KEY&campaign=****&routeid=**&type=text&contacts=< NUMBER >&senderid=SMSMSG&msg=< Message Content >

我想将上述API集成到我的wordpress主题中,以便我可以根据手机号码发送短信并添加所需的消息。

在wordpress中,您可以使用wp_remote_get和wp_remote_post

获取请求示例

$url = 'http://www.elitbuzzsms.com/app/smsapi/index.php?key=KEY&campaign=****&routeid=**&type=text&contacts=< NUMBER >&senderid=SMSMSG&msg=< Message Content >';
$response = wp_remote_get( $url  );
if( is_array($response) ) {
  $header = $response['headers']; // array of http header lines
  $body = $response['body']; // use the content
}

发布请求示例

$response = wp_remote_post( $url, array(
    'method' => 'POST',
    'timeout' => 45,
    'redirection' => 5,
    'httpversion' => '1.0',
    'blocking' => true,
    'headers' => array(),
    'body' => array( 'username' => 'bob', 'password' => '1234xyz' ),
    'cookies' => array()
    )
);
if ( is_wp_error( $response ) ) {
   $error_message = $response->get_error_message();
   echo "Something went wrong: $error_message";
} else {
   echo 'Response:<pre>';
   print_r( $response );
   echo '</pre>';
}