php 创建流上下文的https

dy1byipe  于 2023-02-03  发布在  PHP
关注(0)|答案(2)|浏览(195)

我是新的尝试这样,我试图获得令牌与https在magento2,它不工作在这里我的代码

<?php
$base_url="https://myurl.com/";
$domain="myurl.com";
$url = $base_url.'index.php/rest/V1/integration/admin/token';
$body = '{"username":"ApiUser", "password":"ApiPass"}';

$context_options = array (
        'https' => array (
            'method' => 'POST',
            'header'=> "Content-type: application/json"
            'content' => $body
            ),
        'ssl' => array('SNI_enabled'=>true,'SNI_server_name'=> $domain)
        );

$context = stream_context_create($context_options);
$token = json_decode(file_get_contents($url, false, $context));
echo $token; echo "<br/>";
?>

请帮忙,先谢了。

xxls0lw8

xxls0lw81#

抱歉的超晚答复,但只是在寻找这个解决方案,以及使用https网址,而不是http。
在PHP手册页/示例中,上下文不应是https,而应是http。http://php.net/manual/it/function.stream-context-create.php#74795
不正确:

$context_options = array (
    'https' => array ()
)

正确:

$context_options = array (
    'http' => array ()
)

如果你需要更多的SSL选项,这个评论:http://php.net/manual/it/function.stream-context-create.php#110158

$contextOptions = array(
    'ssl' => array(
        'verify_peer'   => true,
        'cafile'        => __DIR__ . '/cacert.pem',
        'verify_depth'  => 5,
        'CN_match'      => 'secure.example.com'
    )
);
yhived7q

yhived7q2#

SSL环境中使用stream_context_create创建流上下文最简单的方法是省略验证!当我想使用file_get_contents检索数据时,这对我来说非常好:

stream_context_create([
    'http' => [ /* your options here - eg: */ 'method' => 'POST', ],
    // 'https' => 'DON'T forget there is no "https", only "http" like above',
    'ssl'  => [ // here comes the actual SSL part...
        'verify_peer'      => false,
        'verify_peer_name' => false,
    ]
]);

php.net/manual/en/context.ssl.php
x1米3英寸x1米4英寸
要求验证所使用的SSL证书。
默认为TRUE。
x1米5英寸x1米6英寸
要求验证对等名称。
默认为TRUE。

相关问题