您正在使用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;
}
in
$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}
答案 0 :(得分:2)
在XML文档中的任何位置使用
。
这个网站有一个很好的解释:http://www.stylusstudio.com/xmldev/200309/post80050.html
另一个选项
尝试只在您想要空格的地方输入<br/>
为未来观众编辑
对他有用的是键入\n
,他想要换行