1

嗨,我正在使用 linkiedin api,我有一个 xml

function send_messeges($access_token, $xml_atring) {

    $profile_url = "http://api.linkedin.com/v1/people/~/mailbox";
    $xml = '<?xml version="1.0" encoding="UTF-8" ?>
        <mailbox-item>
          <recipients>                
            ' . $xml_atring . '
          </recipients>
          <subject>'.$this->send_subject.'</subject>
          <body>'.$this->send_message.'</body>
        </mailbox-item>';
    $request = OAuthRequest::from_consumer_and_token($this->consumer, $access_token, "POST", $profile_url);
    $request->sign_request($this->method, $this->consumer, $access_token);
    $auth_header = $request->to_header("https://api.linkedin.com");
    $response = $this->httpRequest($profile_url, $auth_header, "POST", $xml);        
    return $response;

}

$this->send_message

我有一条消息,我想添加一些带有消息的 HTML,但linkedin API 不允许我这样做。

即便是

<![CDATA[
        Line 1 <br />
        Line 2 <br />
        Line 3 <br />
        ]]>

不在这里工作,so is there any built in xml tag i can use for line breaks ansd is there any tags equalant to HTML tags。请帮忙

更新

如果我使用消息

"Elephanti <br/> invitation Message, Visite our site http://elephanti.com";

回应是

Invalid xml {Element not allowed: br@http://api.linkedin.com/v1 in element body@http://api.linkedin.com/v1}
4

1 回答 1

3

&#xD在您希望有换行符的任何地方使用您的 XML 文档。

这个网站有一个很好的解释:http: //www.stylusstudio.com/xmldev/200309/post80050.html

另外一个选项

试着<br/>在你想要空间的地方输入

为未来的观众编辑

\n对他有用的是在他想要换行的地方打字

于 2012-08-16T06:40:09.603 回答