我想知道,有没有办法发布我们的格式化(粗体和斜体或\ n)文本作为Post on User流的内容(使用google plus Api)。
我尝试过谷歌提供的Intractive Posts和分享对话,但他们不支持格式化内容。
答案 0 :(得分:2)
据我所知,您无法控制Google根据您的网页内容计算的内容是否为粗体。但是,在帖子内容中,您可以使用类似于降价的标签* BOLD *和_ ITALICIZE _。由于您可以在互动帖子中预先填写文字,因此您可以为用户预先填写一些粗体字词,建议他们强调您网站中的内容。
一些代码:
这适用于您的页面标记
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/client:plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
......这就是身体
<!-- Place the tag where you want the button to render -->
<span
class="g-interactivepost"
data-contenturl="http://wheresgus.com/ipostdemo/gplusbw.png"
data-contentdeeplinkid="/nothingtoseehere"
data-clientid="268858962829.apps.googleusercontent.com"
data-cookiepolicy="single_host_origin"
data-prefilltext="Prefill *bold* and _italic_ content."
data-calltoactionlabel="JOIN"
data-calltoactionurl="https://plus.google.com/+GusClass"
data-calltoactiondeeplinkid="/account/signup">
<img src="gplusbw.png" width=28 height=23>
</span>