aysunzheng 2017-03-05 23:42 采纳率: 100%
浏览 2619
已采纳

关于c#使用WebClient调用openapi接口

使用c#调用openapi接口。如下图
图片说明
java代码为:

public static PageResponse<UIMUser> userfind() {
        List<CommonCondition> conditions = new ArrayList<CommonCondition>();
        CommonCondition c = new CommonCondition();
        c.setName("userName");
        c.setDataType(DataType.String);
        c.setCriteriaType(CriteriaType.StartWith);
        c.setValue("User1");
        conditions.add(c);
        PostMethod method = new PostMethod(endPoint + "/admin/macula-uim/user/find");
        try {
            method.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");
            // 标识是OpenAPI请求
            method.addRequestHeader(OpenApiUtils.AJAX_REQUEST_HEADER, OpenApiUtils.API_REQUEST_VALUE);
            // 添加POST BODY
            method.addParameter("page", "0");
            method.addParameter("rows", "20");
            method.addParameters(OpenApiUtils.getPostParams("conditions", conditions));
            // 设置请求参数
            method.setQueryString(OpenApiUtils.getOpenApiParams(appKey, appSecret, null, null, null, null,
                    "zh_CN", method.getParameters()));

            int status = client.executeMethod(method);
            String content = method.getResponseBodyAsString();

            if (status == HttpServletResponse.SC_OK || status == HttpServletResponse.SC_INTERNAL_SERVER_ERROR) {
                // 反序列化结果
                ObjectMapperImpl mapper = new ObjectMapperImpl();
                return mapper.readValue(content, new TypeReference<PageResponse<UIMUser>>() {
                });
            } else {
                throw new Exception("错误的请求");
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            method.releaseConnection();
        }
        return null;
    }
public static NameValuePair[] getPostParams(String objectName, Object obj) {
        List<NameValuePair> pairs = new ArrayList<NameValuePair>();
        if (obj != null) {
            if (obj instanceof Map) {
                // 处理Map
                Map<?, ?> map = (Map<?, ?>) obj;
                for (Map.Entry<?, ?> entry : map.entrySet()) {
                    Object key = entry.getKey();
                    Object value = entry.getValue();
                    if (null != value) {
                        pairs.addAll(Arrays.asList(getPostParams(objectName + "['" + key + "']", value)));
                    }
                }
            } else if (obj instanceof Collection) {
                // 处理Collection
                Collection<?> col = (Collection<?>) obj;
                Iterator<?> it = col.iterator();
                int index = 0;
                while (it.hasNext()) {
                    Object value = it.next();
                    if (null != value) {
                        pairs.addAll(Arrays.asList(getPostParams(objectName + "[" + index++ + "]", value)));
                    }
                }
            } else if (!BeanUtils.isSimpleProperty(obj.getClass()) && !(obj instanceof Enum) && !Date.class.isAssignableFrom(obj.getClass())) {
                // 处理Bean
                BeanWrapperImpl bean = new BeanWrapperImpl(obj);
                PropertyDescriptor[] ps = bean.getPropertyDescriptors();
                for (PropertyDescriptor p : ps) {
                    if (!p.getName().equals("class")) {
                        Object value = bean.getPropertyValue(p.getName());
                        if (null != value) {
                            pairs.addAll(Arrays.asList(getPostParams(objectName + "." + p.getName(), value)));
                        }
                    }
                }
            } else {
                String str = obj.toString();
                // 处理简单属性
                // 日期格式使用ISO8601
                if (obj instanceof Date) {
                    str = DateFormatUtils.formatISO8601((Date) obj);
                }
                pairs.add(new NameValuePair(objectName, str));
            }
        }
        return pairs.toArray(new NameValuePair[pairs.size()]);
    }
现在不清楚使用c#怎么传递第一个参数。
我自己写的代码:
      using (WebClient client = new WebClient())
            {
                //SyncOrgDAL dal = new SyncOrgDAL();
              //  List<CommonCondition> conditions = new List<CommonCondition>();
                //CommonCondition c = new CommonCondition();
                //c.setName("userType");
                //c.setDataType(DataType.String);
                //c.setCriteriaType(CriteriaType.Equals);
                //c.setValue("User1");
                //conditions.Add(c);
                NameValueCollection postParams = new NameValueCollection { { "conditions", "[\"conditions\":{\"UserName\":\"Exp\",\"userType\":\"Exp\"}]" }, { "page", page.ToString() }, { "rows", pagesize.ToString() } };
                //NameValueCollection postParams = new NameValueCollection { { "fromId", "302264246" }, { "toId", "99999999999" } };

                string passString = Parameters.GetOpenApiParams(account, passWord, null, null, null, null, "zh_CN", postParams);
                //passString += "&userType=EMP";
                url += passString;
                client.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
                client.Headers.Add("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
                client.Headers.Add("X-Requested-With", "OpenAPIRequest");
                client.Headers.Add("User-Agent", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0");
                try
                {
                    byte[] rDownData = client.UploadValues(url, "POST", postParams);
                    var downString = Encoding.UTF8.GetString(rDownData) ?? "";

                    return downString;
                }
                catch (Exception ex)
                {
                    return ex.ToString();
                }
                finally
                {
                    client.Dispose();
                    GC.Collect();
                }

NameValueCollection postParams = new NameValueCollection { { "conditions", "[\"conditions\":{\"UserName\":\"Exp\",\"userType\":\"Exp\"}]" }, { "page", page.ToString() }, { "rows", pagesize.ToString() } }; 第一个参数什么格式。

展开全部

  • 写回答

1条回答 默认 最新

  • threenewbee 2017-03-05 23:43
    关注

    C#没有httpclient,对应的等价类叫做httpwebrequest。你写的对不对,可以用fiddler抓包比下。一目了然

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 雄安新区高光谱数据集的下载网址打不开
  • ¥66 android运行时native和graphics内存详细信息获取
  • ¥100 求一个c#通过CH341读取数据的Demo,能够读取指定地址值的功能
  • ¥15 rk3566 Android11 USB摄像头 微信
  • ¥15 torch框架下的强化学习DQN训练奖励值浮动过低,希望指导如何调整
  • ¥35 西门子博图v16安装密钥提示CryptAcquireContext MS_DEF_PROV Error of containger opening
  • ¥15 mes系统扫码追溯功能
  • ¥40 selenium访问信用中国
  • ¥20 在搭建fabric网络过程中遇到“无法使用新的生命周期”的报错
  • ¥15 Python中关于代码运行报错的问题
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部