这是针对内部门户网站的,我正在寻找一个允许用户登录其Gmail帐户并查看其帐户的小部件。我尝试了Google小工具,但它显示以下错误 “这是一个内置模块,因此忽略UserPref和内容。” 此外,由于小工具将停产,我很难将其作为长期解决方案使用。
即使是来自widgetbox,netvibes等的小部件似乎也无法正常工作。
是否因为Google阻止这些小部件工作而进行了一些政策更改?或者我做错了什么。
答案 0 :(得分:1)
我还尝试在我的网站中使用Google小部件,但不幸的是它不起作用。 它会忽略内容。
没有小部件不能用于我的代码。
我认为政策有变化。但我没有任何提示。
答案 1 :(得分:0)
当您说'登录他们的帐户'以及您想要做什么时。您可以在用户授予您的应用程序访问权限的情况下使用OAuth。
Google有自己的库,用多种语言编写 - 有些使用Java,Python和PHP的例子可以在这里找到:https://developers.google.com/google-apps/gmail/xoauth2_libraries
当您使用OAuth时,您向Google注册,他们会为您提供ConsumerKey和ConsumerSecret - 这就是您向Google发送应用程序的原因。
一旦你这样做,提供一个允许他们登录的链接 - 这将带他们到谷歌登录,他们用他们的帐户登录 - 然后他们授予权限。
我在使用OAail与GMail时遇到了问题,但是成功管理了它与联系人。例如,这是我用来检索所有用户联系人的代码
public List<Person> GetContacts()
{
OAuthParameters parameters = null;
GOAuthRequestFactory requestFactory = null;
ContactsService service = null;
ContactsQuery feedQuery = null;
ContactsFeed feed = null;
List<Person> contacts = null;
try
{
if (ConsumerKey == String.Empty) throw new ValueIsEmptyOrNullException("ConsumerKey");
if (ConsumerSecret == String.Empty) throw new ValueIsEmptyOrNullException("ConsumerSecret");
if (OAuthCallback == String.Empty) throw new ValueIsEmptyOrNullException("OAuthCallback");
if (SignatureMethod == String.Empty) throw new ValueIsEmptyOrNullException("SignatureMethod");
if (ApplicationName == String.Empty) throw new ValueIsEmptyOrNullException("ApplicationName");
if (Token == String.Empty) throw new ValueIsEmptyOrNullException("Token");
if (Nonce == String.Empty) throw new ValueIsEmptyOrNullException("Nonce");
if (Verifier == String.Empty) throw new ValueIsEmptyOrNullException("Verifier");
if (Scope == String.Empty)
Scope = "https://www.google.com/m8/feeds";
parameters = new OAuthParameters();
parameters.ConsumerKey = ConsumerKey;
parameters.ConsumerSecret = ConsumerSecret;
parameters.Scope = Scope;
parameters.Callback = OAuthCallback;
parameters.SignatureMethod = SignatureMethod;
parameters.Timestamp = Toolbox.GenerateTimeStamp();
parameters.Token = Token;
parameters.TokenSecret = TokenSecret;
parameters.Nonce = Nonce;
parameters.Verifier = Verifier;
requestFactory = new GOAuthRequestFactory("c1", ApplicationName, parameters);
service = new ContactsService(ApplicationName);
service.RequestFactory = requestFactory;
feedQuery = new ContactsQuery(ContactsQuery.CreateContactsUri("default"));
feed = service.Query(feedQuery);
if (feed.Entries.Count > 0)
{
contacts = new List<Person>();
foreach (ContactEntry contact in feed.Entries)
{
try
{
if (contact.Name != null)
{
Person person = new Person();
int idStart = contact.Id.Uri.ToString().LastIndexOf('/');
if (idStart > 0)
{
person.PersonId = contact.Id.Uri.ToString().Substring(contact.Id.Uri.ToString().LastIndexOf('/') + 1);
}
else
{
person.PersonId = contact.Id.Uri.ToString();
}
person.GivenName = contact.Name.GivenName;
person.Surname = contact.Name.FamilyName;
person.Birthday = contact.Birthday;
person.Initials = contact.Initials;
person.Location = contact.Location;
person.MaidenName = contact.MaidenName;
person.Occupation = contact.Occupation;
person.Photograph = contact.PhotoUri.ToString();
person.Surname = contact.Name.FamilyName;
if (contact.Emails.Count > 0)
person.Email = contact.Emails[0].Address;
contacts.Add(person);
}
}
catch (System.Exception ex)
{
throw ex;
}
finally
{
}
}
}
}
catch (Exception ex)
{
throw ex;
}
return contacts;
}