繁体   English   中英

guzzle xml 请求只返回纯文本

[英]guzzle xml request returns only plain text

我试图在 php 中使用 guzzle 向 ws 发出 xml 请求,(我尝试使用 curl 来),但总是以纯文本形式响应,在 xml 中没有

    $client = new \GuzzleHttp\Client(['verify' => false]);

        $soapRequest  = <<<XML
        <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/" xmlns:san="mywebsservice">                  
                <soap:Header xmlns:wsa="http://www.w3.org/2005/08/addressing">
                    <wsa:Action>http://tempuri.org/mywebsservice</wsa:Action>                   
                        <To soap:mustUnderstand="1" xmlns="http://www.w3.org/2005/08/addressing">mywebsservice </To>                    
                </soap:Header>                  
                <soap:Body>                 
                    <tem:GetSecurityToken>                  
                        <tem:request>                   
                            <san:Connection>mywebsservice</san:Connection>                  
                            <san:Passwoord>mywebsservice</san:Passwoord>                    
                            <san:System>mywebsservice</san:System>                  
                            <san:UserName>mywebsservice</san:UserName>                  
                        </tem:request>                  
                    </tem:GetSecurityToken>                 
                </soap:Body>                    
        </soap:Envelope>
XML;
        $request = $client->request('POST','mywebsservice', [
            'headers' => [
                'Content-Type' => 'application/soap+xml'
            ],
            'body' => $soapRequest                         
        ]);
        $response = $request->getBody()->getContents();
    var_dump($response);

这是回应 这是回应

string(1870) "
    <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing">
    <s:Header>
        <a:Action s:mustUnderstand="1">http://tempuri.org/webservices/GetSecurityTokenResponse</a:Action>
        <ActivityId CorrelationId="cf1c12da-af1b-4013-ba89-25db2fa67dc1" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">00000000-0000-0000-0000-000000000000</ActivityId>
    </s:Header>
    <s:Body>
        <GetSecurityTokenResponse xmlns="http://tempuri.org/">
            <GetSecurityTokenResult xmlns:b="webservices" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
                <b:AccessToken>token access</b:AccessToken>
                <b:IdToken>the token</b:IdToken>
                <b:TokenType>Bearer</b:TokenType>
            </GetSecurityTokenResult>
        </GetSecurityTokenResponse>
    </s:Body>
</s:Envelope>

您发送的标头是接收服务器用来决定要提供哪些内容的标头。 它仍然是文本内容,但只有不同的Content-Type标题。

guzzlehttp/guzzle 6.x

$response->json()$response->xml()助手在 6.x 中被移除。 以下几行可用于复制该行为:

// Get an associative array from a JSON response.
$data = json_decode($response->getBody(), true);

https://www.php.net/manual/en/function.json-decode.php

// Get a `SimpleXMLElement` object from an XML response.
$xml = simplexml_load_string($response->getBody());

https://www.php.net/manual/en/function.simplexml-load-string.php

guzzlehttp/guzzle 5.x

Guzzle 5.x 有一些快捷方式可以帮助您:

$client = new Client(['base_uri' => 'https://example.com']);

$response = $client->get('/');
// $response = Psr\Http\Message\ResponseInterface

$body = (string) $response->getBody();
// $body = raw request contents in string format.
// If you dont cast `(string)`, you'll get a Stream object which is another story.

现在无论你用$body做什么都取决于你。 如果它是一个 JSON 响应,你会这样做:

$data = $response->json();

如果是XML,可以调用:

$xml = $response->xml();

我从不使用 XML API,所以我不能再给你更多关于如何遍历你将检索的 XML 的例子。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM