程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> http basic authentication經由過程post方法拜訪api示例分享 basic認證示例

http basic authentication經由過程post方法拜訪api示例分享 basic認證示例

編輯:關於JAVA

http basic authentication經由過程post方法拜訪api示例分享 basic認證示例。本站提示廣大學習愛好者:(http basic authentication經由過程post方法拜訪api示例分享 basic認證示例)文章只能為提供參考,不一定能成為您想要的結果。以下是http basic authentication經由過程post方法拜訪api示例分享 basic認證示例正文




private static String url = PropertiesLoader.getProperty("ALLYES_SERVER", false);
    private static String username = PropertiesLoader.getProperty("ALLYES_USERNAME", false);
    private static String password = PropertiesLoader.getProperty("ALLYES_PASSWORD", false);

    /**
     * 添加創意
     *
     * @param creativeAudit
     * @return
     */
    public static Map<String, Object> addCreative(CreativeAudit creativeAudit) {
        //name,width,height,type,creativeTagId, code,bindId
        String type = "9";
        if (creativeAudit.getRelative_path().toLowerCase().endsWith("gif"))
            type = "10";
        if (creativeAudit.getRelative_path().toLowerCase().endsWith("swf"))
            type = "11";
        Map<String, Object> result = new HashMap<String, Object>();

        String addUrl = url + "/creatives/add";
        DefaultHttpClient httpClient = new DefaultHttpClient();
        httpClient.getCredentialsProvider().setCredentials(AuthScope.ANY, new UsernamePasswordCredentials(username, password));
        try {
            List<NameValuePair> postparams = new ArrayList<NameValuePair>();
            postparams.add(new BasicNameValuePair("name", creativeAudit.getName()));
            postparams.add(new BasicNameValuePair("width", Integer.toString(creativeAudit.getWidth())));
            postparams.add(new BasicNameValuePair("height", Integer.toString(creativeAudit.getHeight())));
            postparams.add(new BasicNameValuePair("type", type));
            postparams.add(new BasicNameValuePair("creativeTagId", creativeAudit.getAdCategory().getAd_caterory().substring(2)));
            postparams.add(new BasicNameValuePair("code", creativeAudit.getCode()));
            postparams.add(new BasicNameValuePair("bindId", creativeAudit.getGeoid()));
            UrlEncodedFormEntity entity = new UrlEncodedFormEntity(postparams, "UTF-8");
            HttpPost httpPost = new HttpPost(addUrl);
            httpPost.setEntity(entity);
            HttpResponse httpResponse = httpClient.execute(httpPost);
            int statusCode = httpResponse.getStatusLine().getStatusCode();
            if (statusCode == HttpStatus.SC_OK) {
                HttpEntity httpEntity = httpResponse.getEntity();
                String createResult = EntityUtils.toString(httpEntity, "UTF-8");
                JSONObject jsonObject = JSONObject.fromObject(createResult);
                String uuid = jsonObject.get("id").toString();
                creativeAudit.setUuid(uuid);
                result.put("success", creativeAudit);
            } else {
                HttpEntity httpEntity = httpResponse.getEntity();
                String createResult = EntityUtils.toString(httpEntity, "UTF-8");
                String errorMessage = "新增創意:" + creativeAudit.getGeoid() + "失足,狀況碼:" + statusCode + "; " + createResult;
                result.put("failed", errorMessage);
            }
        } catch (Exception ue) {
            ue.printStackTrace();
            result.put("failed", "添加創意時提交的數據有成績!");
        }
         /*
        creativeAudit.setUuid("189-"+creativeAudit.getGeoid());
        result.put("success",creativeAudit);
        */
        return result;
    }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved