Unity 百度AI人脸识别 获取Access Token
1. 注册 百度
https://ai.baidu.com/tech/face
2. 创建应用
3. 获取 AK 和 SK
4. 获取 AssetToken
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Net.Http;
using com.baidu.ai;
namespace ConsoleApplication1
{
class Program
{
// 调用getAccessToken()获取的 access_token建议根据expires_in 时间 设置缓存
// 返回token示例
public static String TOKEN = "24.adda70c11b9786206253ddb70affdc46.2592000.1493524354.282335-1234567";
// 百度云中开通对应服务应用的 API Key 建议开通应用的时候多选服务
private static String clientId = "l0wrXs9YQescNbs6t0Cym6mG";
// 百度云中开通对应服务应用的 Secret Key
private static String clientSecret = "iOnZc7z8VsO7sGHTra4vhdp3WDapEoGp";
static void Main(string[] args)
{
// 获取 AssetToken
getAccessToken();
}
public static String getAccessToken()
{
String authHost = "https://aip.baidubce.com/oauth/2.0/token";
HttpClient client = new HttpClient();
List<KeyValuePair<String, String>> paraList = new List<KeyValuePair<string, string>>();
paraList.Add(new KeyValuePair<string, string>("grant_type", "client_credentials"));
paraList.Add(new KeyValuePair<string, string>("client_id", clientId));
paraList.Add(new KeyValuePair<string, string>("client_secret", clientSecret));
HttpResponseMessage response = client.PostAsync(authHost, new FormUrlEncodedContent(paraList)).Result;
String result = response.Content.ReadAsStringAsync().Result;
Console.WriteLine(result);
return result;
}
}