2014-11-01 20 views

回答

0

你將不得不在你的網站上使用類似的東西來創建環聊按鈕。 嘗試根據您使用的Web框架修改邀請。

<html> 
<head> 
<script> 
    <title>Hangout button demo: Inviting people</title> 
    <link rel="canonical" href="http://www.example.com" /> 
</script> 
</head> 
<body> 
    <script src="https://apis.google.com/js/platform.js" async defer></script> 
    <g:hangout render="createhangout" 
     invites="[{ id : '1234', invite_type : 'PROFILE' }, 
        { id : '[email protected]', invite_type : 'EMAIL' }]"> 
    </g:hangout> 
</body> 
</html> 
相關問題