zoukankan      html  css  js  c++  java
  • 2021.5.27 团队第二阶段冲刺第四天

    今天我们对识别出来的数据进行分类

    人脸识别根据人脸分类

    public static String getAuth(String ak, String sk) {
    // 获取token地址
    String authHost = "https://aip.baidubce.com/oauth/2.0/token?";
    String getAccessTokenUrl = authHost
    // 1. grant_type为固定参数
    + "grant_type=client_credentials"
    // 2. 官网获取的 API Key
    + "&client_id=" + ak
    // 3. 官网获取的 Secret Key
    + "&client_secret=" + sk;
    try {
    URL realUrl = new URL(getAccessTokenUrl);
    // 打开和URL之间的连接
    HttpURLConnection connection = (HttpURLConnection) realUrl.openConnection();
    connection.setRequestMethod("GET");
    connection.connect();
    // 获取所有响应头字段
    Map<String, List<String>> map = connection.getHeaderFields();
    // 遍历所有的响应头字段
    for (String key : map.keySet()) {
    System.err.println(key + "--->" + map.get(key));
    }
    // 定义 BufferedReader输入流来读取URL的响应
    BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String result = "";
    String line;
    while ((line = in.readLine()) != null) {
    result += line;
    }
    /**
    * 返回结果示例
    */
    System.err.println("result:" + result);
    //JSONObject jsonObject = new JSONObject(result);
    JSONObject jsonObject=JSON.parseObject(result);
    String access_token = jsonObject.getString("access_token");
    return access_token;
    } catch (Exception e) {
    System.err.printf("获取token失败!");
    e.printStackTrace(System.err);
    }
    return null;
    }
  • 相关阅读:
    安全扫描英汉对照意思
    文件包含漏洞
    文件上传漏洞
    XSS攻击
    常用命令
    适用于 Python 的 AWS 开发工具包 (Boto3)
    SQS 设置长轮询
    Amazon SNS 消息属性
    SQS Queues and SNS Notifications – Now Best Friends
    Policy Evaluation Logic 策略评估逻辑
  • 原文地址:https://www.cnblogs.com/buxiang-Christina/p/14910390.html
Copyright © 2011-2022 走看看