我正在使用谷歌联系人javascript api。我正在尝试使用中提供的代码将联系人添加到经过身份验证的用户的gmail帐户 http://code.google.com/apis/contacts/docs/1.0/developers_guide_js.html#Interactive_Samples
我可以登录并注销。但我尝试创建一个新的联系人,我的chrome给出了一个错误。我已经在亚马逊s3桶中托管了javascript和html文件,还有图片。
不安全的JavaScript尝试使用URL https://s3.amazonaws.com/googlecontacts/google_contacts.html访问具有以下URL的框架:空白。域,协议和端口必须匹配。
并且未创建联系人。
HTML文件
<!DOCTYPE HTML>
<head> <title> Google contacts </title>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript" src="auth.js" > </script>
</head>
<body>
<h1> Google contacts </h1>
<img src="rss_icon.jpg" width="100" height="100" />
<input type="button" value="login" onclick="logMeIn()" />
<input type="button" value="logout" onclick="logMeOut()" />
<input type="button" value="createContact" onclick="createContact()" />
</body>
</html>
javascript文件
google.load( 'gdata', '1.x' );
var contactsService;
function setupContactsService() {
contactsService = new google.gdata.contacts.ContactsService('GoogleInc-jsguide-1.0');
}
function logMeIn() {
var scope = 'https://www.google.com/m8/feeds';
var token = google.accounts.user.login(scope);
}
function logMeOut() {
google.accounts.user.logout();
}
function createContact() {
/*
* Create a contact entry
*/
// Create the contacts service object
var contactsService =
new google.gdata.contacts.ContactsService('GoogleInc-jsguide-1.0');
// The feed URI that is used to create a contact entry
var feedUri = 'http://www.google.com/m8/feeds/contacts/default/full';
// Create an instance of ContactEntry
var entry = new google.gdata.contacts.ContactEntry();
// Set the name of the contact
entry.setTitle(google.gdata.Text.create('JS-Client: Create Contact'));
// Set the content of the contact
entry.setContent(google.gdata.Text.create('content info here'));
// Create an email instance
var email = new google.gdata.Email();
email.setAddress('JS-Client@domain.com');
email.setPrimary(true);
// Designate this email as the "home" email
email.setRel(google.gdata.Email.REL_HOME);
// Add the email instance
entry.setEmailAddresses([email]);
// The callback method that will be called after a successful insertion from insertEntry()
var callback = function(result) {
PRINT('contact entry created!');
}
// Error handler will be invoked if there is an error from insertEntry()
var handleError = function(error) {
document.getWriter='error';
}
// Submit the request using the contacts service object
contactsService.insertEntry(feedUri, entry, callback,
handleError, google.gdata.contacts.ContactEntry);
}
答案 0 :(得分:2)
问题是我是从http服务器访问https服务器,所以协议不匹配只是更改了feedURi http://www.google.com/m8/feeds/contacts/default/full';至 https://www.google.com/m8/feeds/contacts/default/full“;
答案 1 :(得分:1)
您是否尝试将google.load( 'gdata', '1.x' );
放入html文件?
它对我有用。