gpt4 book ai didi

google-plus - 如何在我的网站上显示我的 google plus 页面的事件提要?

转载 作者:行者123 更新时间:2023-12-04 19:43:57 24 4
gpt4 key购买 nike

我想在我的网站上显示我的 facebook、twitter、linkedIn、google+ 页面的事件提要。对于 facebook 和 twitter,我通过引用他们的开发者网站(附图片)来获取提要。但我不知道如何从 google plus 页面获取事件提要。有没有可用的选项?

enter image description here

最佳答案

有一些工具可帮助您使用 Google+ 执行此操作,但没有预制的小部件可以执行此操作。您需要组合 Google+ API 的两个组件:activities.list打电话和一个embedded post .

一个非常简单的实现可能看起来像这样:

    <html>
<head>
<title>Plus Posts</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<style>
.post {
display: block;
padding-bottom: 10px;
}
</style>
</head>
<body>

<div id="posts"></div>

<script type="text/javascript">

var plusId = 'profile_id_to_view;
var apiKey = 'API key from developer console';

function start(){
gapi.client.setApiKey( apiKey );
gapi.client.load('plus','v1', function(){
console.log('loaded');
gapi.client.plus.activities.list({
userId: plusId,
collection: 'public',
maxResults: 10
}).execute(function(resp){
if( resp && resp.items && resp.items.length > 0 ){
for( var co=0; co<resp.items.length; co++ ){
$('#posts').append('<div class="post"><div id="posts-'+co+'"></div></div>');
var url = resp.items[co].object.url;
gapi.post.render('posts-'+co, {url:url});
}
} else {
console.log('invalid resp', resp);
}
});
});
}

(function(){
var po = document.createElement( 'script' );
po.type = 'text/javascript';
po.async = true;
po.src = 'https://plus.google.com/js/client:plusone.js?onload=start';
var s = document.getElementsByTagName( 'script' )[0];
s.parentNode.insertBefore( po, s );
})();
</script>
</body>
</html>

您需要创建一个项目并从 http://console.developers.google.com/ 获取您自己的 API key 并提供此信息和您希望关注的帖子的 ID。

关于google-plus - 如何在我的网站上显示我的 google plus 页面的事件提要?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23335060/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com