gpt4 book ai didi

php - 如何在 Wordpress 中集成第三方 API

转载 作者:行者123 更新时间:2023-12-05 08:33:54 26 4
gpt4 key购买 nike

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

我的 SMS 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_getwp_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>';
}

关于php - 如何在 Wordpress 中集成第三方 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35267398/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com