Google Gmail API - 身份验证

发布于 2024-12-21 07:08:49 字数 915 浏览 0 评论 0原文

我已经有了可以正常工作的代码,但出于安全原因,我想采用其他方式进行身份验证。

在这种情况下,用户写下他的用户名和密码,但我想制作“允许 demo.com 访问您的信息”的单击按钮。

如何更改此代码:

//Provide Login Information
Google.GData.Client.RequestSettings rsLoginInfo = new Google.GData.Client
        .RequestSettings("", txtEmail.Text, txtPassword.Text);
rsLoginInfo.AutoPaging = true;

// Fetch contacts and dislay them in ListBox
Google.Contacts.ContactsRequest cRequest = new ContactsRequest(rsLoginInfo);
Google.GData.Client.Feed<Google.Contacts.Contact> feedContacts = cRequest
        .GetContacts();
foreach (Google.Contacts.Contact gmailAddresses in feedContacts.Entries) {
    Console.WriteLine("\t" + gmailAddresses.Title);
    lstContacts.Items.Add(gmailAddresses.Title);
    foreach (EMail emailId in gmailAddresses.Emails) {
        Console.WriteLine("\t" + emailId.Address);
        lstContacts.Items.Add(" " + emailId.Address);
    }
}

I already have code which works fine, but for security reason I want to make other way of Auth.

In this case, user writes his username and password, but I want to make like "Allow demo.com to access your information's" click button.

How to change this code:

//Provide Login Information
Google.GData.Client.RequestSettings rsLoginInfo = new Google.GData.Client
        .RequestSettings("", txtEmail.Text, txtPassword.Text);
rsLoginInfo.AutoPaging = true;

// Fetch contacts and dislay them in ListBox
Google.Contacts.ContactsRequest cRequest = new ContactsRequest(rsLoginInfo);
Google.GData.Client.Feed<Google.Contacts.Contact> feedContacts = cRequest
        .GetContacts();
foreach (Google.Contacts.Contact gmailAddresses in feedContacts.Entries) {
    Console.WriteLine("\t" + gmailAddresses.Title);
    lstContacts.Items.Add(gmailAddresses.Title);
    foreach (EMail emailId in gmailAddresses.Emails) {
        Console.WriteLine("\t" + emailId.Address);
        lstContacts.Items.Add(" " + emailId.Address);
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿童谣 2024-12-28 07:08:49

看来您正在尝试进行 3 足 OAuth。用于执行 3-Legged OAuth 1.0a 的 .NET 示例记录如下:

http://code.google.com/apis/gdata/docs/auth/oauth.html#Examples

It seems like you're trying to do 3-Legged OAuth. .NET samples for performing 3-Legged OAuth 1.0a are documented here:

http://code.google.com/apis/gdata/docs/auth/oauth.html#Examples

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文