如何在wordpress中使用API

时间:2017-10-25 05:43:39

标签: php wordpress api razorpay

我想将一个Razorpay Payment API与WordPress连接,API使用用户名和密码进行身份验证令牌。

WordPress中是否有可用于调用和处理响应的内置功能?

1 个答案:

答案 0 :(得分:7)

您可以使用wp_remote_get()

例如

wp_remote_get( 'http://www.example.com/index.php?action=foo', array( 'timeout' => 120, 'httpversion' => '1.1' ) );

您还可以控制所有请求参数,例如标题和正文数据。

默认使用

global $wp_version;
$args = array(
    'timeout'     => 5,
    'redirection' => 5,
    'httpversion' => '1.0',
    'user-agent'  => 'WordPress/' . $wp_version . '; ' . home_url(),
    'blocking'    => true,
    'headers'     => array(),
    'cookies'     => array(),
    'body'        => null,
    'compress'    => false,
    'decompress'  => true,
    'sslverify'   => true,
    'stream'      => false,
    'filename'    => null
); 

参考:More info