背水一戰 Windows 10 (83) - 用戶和賬號: 數據賬號的添加和管理, OAuth 2.0 驗證

来源:https://www.cnblogs.com/webabcd/archive/2018/01/04/8191182.html
-Advertisement-
Play Games

背水一戰 Windows 10 之 用戶和賬號: 數據賬號的添加和管, OAuth 2.0 驗證 ...


[源碼下載]


背水一戰 Windows 10 (83) - 用戶和賬號: 數據賬號的添加和管理, OAuth 2.0 驗證



作者:webabcd


介紹
背水一戰 Windows 10 之 用戶和賬號

  • 數據賬號的添加和管
  • OAuth 2.0 驗證



示例
1、演示數據賬號的添加和管理
UserAndAccount/DataAccount.xaml

<Page
    x:Class="Windows10.UserAndAccount.DataAccount"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.UserAndAccount"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <TextBlock Name="lblMsg" Margin="5" />
            
            <Button Name="buttonAdd" Content="新增一個數據賬號" Margin="5" Click="buttonAdd_Click" />

        </StackPanel>
    </Grid>
</Page>

UserAndAccount/DataAccount.xaml.cs

/*
 * 演示數據賬號的添加和管理
 * 
 * UserDataAccountManager - 數據賬號管理器
 *     ShowAddAccountAsync() - 彈出賬號添加界面
 *     ShowAccountSettingsAsync() - 彈出賬號管理界面
 *     RequestStoreAsync() - 返回當前用戶的數據賬號存儲區域
 *     GetForUser() - 返回指定用戶的數據賬號存儲區域(通過返回的 UserDataAccountManagerForUser 對象的 RequestStoreAsync() 方法)
 *     
 * UserDataAccountStore - 數據賬號存儲區域
 *     FindAccountsAsync() - 返回所有的數據賬號
 *     GetAccountAsync() - 返回指定的數據賬號
 *     
 * UserDataAccount - 數據賬號
 *     UserDisplayName - 用戶名
 *     Id - 數據賬號在本地設備上的唯一標識
 *     SaveAsync() - 保存
 *     DeleteAsync() - 刪除
 *     ... 還有很多其他屬性和方法
 *     
 *     
 * 註:根據使用的功能需要在 Package.appxmanifest 做相關配置
 * 1、用到 Windows.System.User 的話需要配置 <Capability Name="userAccountInformation" />
 * 2、還可能需要 <Capability Name="appointments" />, <Capability Name="contacts" />
 */

using System;
using System.Linq;
using System.Collections.Generic;
using Windows.ApplicationModel.UserDataAccounts;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;

namespace Windows10.UserAndAccount
{
    public sealed partial class DataAccount : Page
    {
        public DataAccount()
        {
            this.InitializeComponent();
        }

        protected async override void OnNavigatedTo(NavigationEventArgs e)
        {
            base.OnNavigatedTo(e);

            // 獲取當前用戶下的全部數據賬號
            UserDataAccountStore store = await UserDataAccountManager.RequestStoreAsync(UserDataAccountStoreAccessType.AllAccountsReadOnly);
            IReadOnlyList<UserDataAccount> accounts = await store.FindAccountsAsync();
            lblMsg.Text += string.Join(",", accounts.Select(p => p.UserDisplayName));
            lblMsg.Text += Environment.NewLine;
        }

        private async void buttonAdd_Click(object sender, RoutedEventArgs e)
        {
            // 彈出賬號添加界面,如果添加成功會返回新建的數據賬號的在本地設備上的唯一標識
            string userDataAccountId = await UserDataAccountManager.ShowAddAccountAsync(UserDataAccountContentKinds.Email | UserDataAccountContentKinds.Appointment | UserDataAccountContentKinds.Contact);

            if (string.IsNullOrEmpty(userDataAccountId))
            {
                lblMsg.Text += "用戶取消了或添加賬號失敗";
                lblMsg.Text += Environment.NewLine;
            }
            else
            {
                UserDataAccountStore store = await UserDataAccountManager.RequestStoreAsync(UserDataAccountStoreAccessType.AllAccountsReadOnly);
                if (store != null)
                {
                    // 通過數據賬號在本地設備上的唯一標識來獲取 UserDataAccount 對象
                    UserDataAccount account = await store.GetAccountAsync(userDataAccountId);
                    lblMsg.Text += "新增的數據賬號:" + account.UserDisplayName;
                }
            }
        }
    }
}


2、演示如何開發一個基於 OAuth 2.0 驗證的客戶端 
UserAndAccount/OAuth20.xaml

<Page
    x:Class="Windows10.UserAndAccount.OAuth20"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.UserAndAccount"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <Button Name="buttonWeibo" Content="登錄新浪微博,並返回登錄用戶好友最新發佈的微博" Margin="5" Click="buttonWeibo_Click" />

            <TextBlock Name="lblMsg" TextWrapping="Wrap" Margin="5" />

        </StackPanel>
    </Grid>
</Page>

UserAndAccount/OAuth20.xaml.cs

/*
 * 演示如何開發一個基於 OAuth 2.0 驗證的客戶端 
 * 關於 OAuth 2.0 協議請參見:http://tools.ietf.org/html/draft-ietf-oauth-v2-20
 * 
 * WebAuthenticationBroker - 用於 OAuth 2.0 驗證的第一步,可以將第三方 UI 無縫整合進 app
 *     AuthenticateAsync(WebAuthenticationOptions options, Uri requestUri, Uri callbackUri) - 請求 authorization code,返回一個 WebAuthenticationResult 類型的數據
 *
 * WebAuthenticationResult - 請求 authorization code(OAuth 2.0 驗證的第一步)的結果
 *     ResponseData - 響應的數據         
 *     ResponseStatus - 響應的狀態
 * 
 * 
 * 註:本例以微博開放平臺為例
 */

using System;
using System.Net.Http;
using System.Text.RegularExpressions;
using Windows.Data.Json;
using Windows.Security.Authentication.Web;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;

namespace Windows10.UserAndAccount
{
    public sealed partial class OAuth20 : Page
    {
        public OAuth20()
        {
            this.InitializeComponent();
        }

        private async void buttonWeibo_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                var appKey = "39261162";
                var appSecret = "652ec0b02f814d514fc288f3eab2efda";
                var callbackUrl = "http://webabcd.cnblogs.com"; // 在新浪微博開放平臺設置的回調頁

                var requestAuthorizationCode_url =
                    string.Format("https://api.weibo.com/oauth2/authorize?client_id={0}&response_type=code&redirect_uri={1}",
                    appKey,
                    callbackUrl);

                // 第一步:request authorization code
                WebAuthenticationResult WebAuthenticationResult = await WebAuthenticationBroker.AuthenticateAsync(
                    WebAuthenticationOptions.None,
                    new Uri(requestAuthorizationCode_url),
                    new Uri(callbackUrl));

                // 第一步的結果
                lblMsg.Text = WebAuthenticationResult.ResponseStatus.ToString() + Environment.NewLine;

                if (WebAuthenticationResult.ResponseStatus == WebAuthenticationStatus.Success)
                {
                    // 從第一步返回的數據中獲取 authorization code
                    var authorizationCode = QueryString(WebAuthenticationResult.ResponseData, "code");
                    lblMsg.Text += "authorizationCode: " + authorizationCode + Environment.NewLine;

                    var requestAccessToken_url =
                        string.Format("https://api.weibo.com/oauth2/access_token?client_id={0}&client_secret={1}&grant_type=authorization_code&redirect_uri={2}&code={3}",
                        appKey,
                        appSecret,
                        callbackUrl,
                        authorizationCode);

                    // 第二步:request access token
                    HttpClient client = new HttpClient();
                    var response = await client.PostAsync(new Uri(requestAccessToken_url), null);

                    // 第二步的結果:獲取其中的 access token
                    var jsonString = await response.Content.ReadAsStringAsync();
                    JsonObject jsonObject = JsonObject.Parse(jsonString);
                    var accessToken = jsonObject["access_token"].GetString();
                    lblMsg.Text += "accessToken: " + accessToken + Environment.NewLine;

                    var requestProtectedResource_url =
                        string.Format("https://api.weibo.com/2/statuses/friends_timeline.json?access_token={0}",
                        accessToken);

                    // 第三步:request protected resource,獲取需要的數據(本例為獲取登錄用戶好友最新發佈的微博)
                    var result = await client.GetStringAsync(new Uri(requestProtectedResource_url)); // 由於本 app 沒有提交微博開放平臺審核,所以如果使用的賬號沒有添加到微博開放平臺的測試賬號中的話,是會出現異常的
                    lblMsg.Text += "result: " + result;
                }
            }
            catch (Exception ex)
            {
                lblMsg.Text += Environment.NewLine;
                lblMsg.Text += ex.ToString();
            }
        }

        /// <summary>
        /// 模擬 QueryString 的實現
        /// </summary>
        /// <param name="queryString">query 字元串</param>
        /// <param name="key">key</param>
        private string QueryString(string queryString, string key)
        {
            return Regex.Match(queryString, string.Format(@"(?<=(\&|\?|^)({0})\=).*?(?=\&|$)", key), RegexOptions.IgnoreCase).Value;
        }
    }
}

/*
 * OAuth 2.0 的 Protocol Flow
     +--------+                               +---------------+
     |        |--(A)- Authorization Request ->|   Resource    |
     |        |                               |     Owner     |
     |        |<-(B)-- Authorization Grant ---|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(C)-- Authorization Grant -->| Authorization |
     | Client |                               |     Server    |
     |        |<-(D)----- Access Token -------|               |
     |        |                               +---------------+
     |        |
     |        |                               +---------------+
     |        |--(E)----- Access Token ------>|    Resource   |
     |        |                               |     Server    |
     |        |<-(F)--- Protected Resource ---|               |
     +--------+                               +---------------+
*/



OK
[源碼下載]


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.Array & Arrays 與Collection & Collections區別 (1)Collection": 是一個介面,與其子類共同組成一個Collection集合框架; Collections: 是一個類,一個服務於集合的工具類, 提供一系列靜態方法實現對各種集合的搜索、排序、線程安 ...
  • 文章結尾有彩蛋 《學生成績管理系統》實習內容及要求 一、項目名稱:“學生成績管理系統”,包名是“班級名稱全拼”(例如計算171),Java文件名稱是“姓名全拼+班級號+學號”(例如計算171班的張三,學號為5號,則他的文件名稱為“zhangsan1705),其他類名稱為“類名+班級號+學號”(例如計 ...
  • 兩種最重要的標準庫 string和vector string和vector是兩種最重要的標準庫類型,string表示可變長的字元序列,vector存放的是某種給定類型對象的可變長序列。 一、標準庫類型string 1.定義和初始化string對象:初始化string對象的方式有 string s1 ...
  • Python是一種解釋型、面向對象、動態數據類型的高級程式設計語言。 像Perl語言一樣,Python源代碼同樣遵循GPL(GUN General Public License)協議。 我目前學習的是Python2.x版本。 接下來我來說一說Python的特點 1.易於學習:有相對較少的關鍵字,結構 ...
  • 1.Flask: Flask是一個基於Python開發並且依賴jinja2模板和Werkzeug WSGI服務的一個微型框架,對於Werkzeug本質是Socket服務端,其用於接收http請求並對請求進行預處理,然後觸發Flask框架,開發人員基於Flask框架提供的功能對請求進行相應的處理,並返 ...
  • public static void main(String[] args) { for (int i = 0; i < 5; i++) { for (int j = 0; j < 10; j++) { System.out.print(" "); } for (int j = 0; j <5-i; ...
  • 1.當使用轉發時,JSP容器將使用一個內部方法來調用目標頁面,新的頁面繼續處理同一個請求,而瀏覽器不會知道這個過程; 2.重定向是第一個頁面通知瀏覽器發送一個新的頁面請求. 3.轉發不改變URL,重定向回改變URL; 4.因為瀏覽器要發出新請求,故而重定向慢一些; 5.由於發生了新請求,故而重定向之 ...
  • 自動調用Spring的bean.xml配置文件 需要web.xml啟動文件 代碼如下: 其中調用了過濾器和監聽器 Spring核心配置文件bean.xml代碼 配置文件註入對象屬性,註意需要類當中聲明屬性並設置setter方法 層層調用 UserAction類代碼如下: UserService類代碼 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...