微信卡券接口问题

时间:2022-08-30 00:22:45
string buff = "{\"card\": {\"card_type\": \"CASH\",\"groupon\": {\"base_info\": {\"logo_url \": \"https://mmbiz.qlogo.cn/mmbiz/pEjibTibnM4kjzGwdia33qWmBZKTsncHxm1kpQ1UqeXSOyIlLq8KLPDb9VB6XbHN425ibicXHAfYNDLj2lF0Z5MVia6g/0\",\"brand_name\": \"456\",\"code_type\": \"CODE_TYPE_TEXT\",\"title\": \"654\",\"sub_title\": \"周末狂欢必备\",\"color\": \"Color010\",\"notice\": \"使用时向服务员出示此券\",\"service_phone\": \"020-88888888\",\"description\": \"不可与其他优惠同享\",\"date_info\": {\"type\": \"DATE_TYPE_FIX_TIME_RANGE\",\"end_timestamp\": \"1422724261\"},\"sku\": {\"quantity\": 0},\"get_limit\": 2,\"use_custom_code\": false,\"bind_openid\": false,\"can_share\": true,\"can_give_friend\": true,\"custom_url_name\": \"立即使用\",\"custom_url\": \"http://www.qq.com\",\"custom_url_sub_title\": \"6个汉字tips\",\"promotion_url_name\": \"更多优惠\",\"promotion_url\": \"http://www.qq.com\",\"source\": \"大众点评\"},\"least_cost\": 100,\"reduce_cost\": 20000}}}";
一直返回47001不知道哪出问题了,解析没问题的
{
    "card": {
        "card_type": "CASH", 
        "groupon": {
            "base_info": {
                "logo_url ": "https://mmbiz.qlogo.cn/mmbiz/pEjibTibnM4kjzGwdia33qWmBZKTsncHxm1kpQ1UqeXSOyIlLq8KLPDb9VB6XbHN425ibicXHAfYNDLj2lF0Z5MVia6g/0", 
                "brand_name": "456", 
                "code_type": "CODE_TYPE_TEXT", 
                "title": "654", 
                "sub_title": "周末狂欢必备", 
                "color": "Color010", 
                "notice": "使用时向服务员出示此券", 
                "service_phone": "020-88888888", 
                "description": "不可与其他优惠同享", 
                "date_info": {
                    "type": "DATE_TYPE_FIX_TIME_RANGE", 
                    "end_timestamp": "1422724261"
                }, 
                "sku": {
                    "quantity": 0
                }, 
                "get_limit": 2, 
                "use_custom_code": false, 
                "bind_openid": false, 
                "can_share": true, 
                "can_give_friend": true, 
                "custom_url_name": "立即使用", 
                "custom_url": "http://www.qq.com", 
                "custom_url_sub_title": "6个汉字tips", 
                "promotion_url_name": "更多优惠", 
                "promotion_url": "http://www.qq.com", 
                "source": "大众点评"
            }, 
            "least_cost": 100, 
            "reduce_cost": 20000
        }
    }
}
帮我看一下谢谢。刚刚接触.net

11 个解决方案

#1


end_timestamp这个错了吧,不是string类型,unsigned int

#2


200 OK
Connection: keep-alive
Date: Wed, 29 Jul 2015 03:49:19 GMT
Server: nginx/1.8.0
Content-Type: application/json; encoding=utf-8
Content-Length: 192
{
    "errcode": 47001, 
    "errmsg": "data format error hints: Error before \": \"https://mmbiz.qlogo.cn/mmbiz/pEjibTibnM4kjzGwdia33qWmBZKTsncHxm1kpQ1UqeXSOyIlLq8KLPDb9VB6XbHN425ibicXHAfYNDLj2l..."
}
提示:
Error while extracting JSON/XML contents

还是不行。。

#3


 "logo_url "这是不是多个空格 微信卡券接口问题再试试,不行再自己对比那文档的示例格式

#4


引用 3 楼 chb345536638 的回复:
 "logo_url "这是不是多个空格 微信卡券接口问题再试试,不行再自己对比那文档的示例格式
感谢 确实多个空格 不过这又出问题了 {
    "errcode": 47001, 
    "errmsg": "data format error hints: Error before \": 100, 
 \"reduce_cost\": 20000
 }
 }
}"

#5


快来人啊 2天了 再不解决要死人了

#6


我现在也是提示这个错误,郁闷啊

#7


微信卡券接口问题这几天研究了下微信开发,发现微信提供的测试接口各种问题,这个卡券创建也是。。。我也遇到了。。不知道是因为测试接口的原因还是微信本身就有Bug

#8


引用 4 楼 kmlloop1 的回复:
Quote: 引用 3 楼 chb345536638 的回复:

 "logo_url "这是不是多个空格 微信卡券接口问题再试试,不行再自己对比那文档的示例格式
感谢 确实多个空格 不过这又出问题了 {
    "errcode": 47001, 
    "errmsg": "data format error hints: Error before \": 100, 
 \"reduce_cost\": 20000
 }
 }
}"


楼主也是卡券文档的受害者啊。
微信卡券接口问题

#9


我也是刚刚做好这个json串,,  经验就是 数据该是什么类型就是什么类型,不要一概用String代替,boolean也是 不要有""
时间值是毫秒值,..... json串先用在线工具验证一下,,, 如果工具都还没通过验证 那肯定是费时费力

#10


引用 9 楼 qq_15389363 的回复:
我也是刚刚做好这个json串,,  经验就是 数据该是什么类型就是什么类型,不要一概用String代替,boolean也是 不要有""
时间值是毫秒值,..... json串先用在线工具验证一下,,, 如果工具都还没通过验证 那肯定是费时费力

赞一个!!

#11


表示一直卡在这个错误,好像有大神给下格式code,心累.

#1


end_timestamp这个错了吧,不是string类型,unsigned int

#2


200 OK
Connection: keep-alive
Date: Wed, 29 Jul 2015 03:49:19 GMT
Server: nginx/1.8.0
Content-Type: application/json; encoding=utf-8
Content-Length: 192
{
    "errcode": 47001, 
    "errmsg": "data format error hints: Error before \": \"https://mmbiz.qlogo.cn/mmbiz/pEjibTibnM4kjzGwdia33qWmBZKTsncHxm1kpQ1UqeXSOyIlLq8KLPDb9VB6XbHN425ibicXHAfYNDLj2l..."
}
提示:
Error while extracting JSON/XML contents

还是不行。。

#3


 "logo_url "这是不是多个空格 微信卡券接口问题再试试,不行再自己对比那文档的示例格式

#4


引用 3 楼 chb345536638 的回复:
 "logo_url "这是不是多个空格 微信卡券接口问题再试试,不行再自己对比那文档的示例格式
感谢 确实多个空格 不过这又出问题了 {
    "errcode": 47001, 
    "errmsg": "data format error hints: Error before \": 100, 
 \"reduce_cost\": 20000
 }
 }
}"

#5


快来人啊 2天了 再不解决要死人了

#6


我现在也是提示这个错误,郁闷啊

#7


微信卡券接口问题这几天研究了下微信开发,发现微信提供的测试接口各种问题,这个卡券创建也是。。。我也遇到了。。不知道是因为测试接口的原因还是微信本身就有Bug

#8


引用 4 楼 kmlloop1 的回复:
Quote: 引用 3 楼 chb345536638 的回复:

 "logo_url "这是不是多个空格 微信卡券接口问题再试试,不行再自己对比那文档的示例格式
感谢 确实多个空格 不过这又出问题了 {
    "errcode": 47001, 
    "errmsg": "data format error hints: Error before \": 100, 
 \"reduce_cost\": 20000
 }
 }
}"


楼主也是卡券文档的受害者啊。
微信卡券接口问题

#9


我也是刚刚做好这个json串,,  经验就是 数据该是什么类型就是什么类型,不要一概用String代替,boolean也是 不要有""
时间值是毫秒值,..... json串先用在线工具验证一下,,, 如果工具都还没通过验证 那肯定是费时费力

#10


引用 9 楼 qq_15389363 的回复:
我也是刚刚做好这个json串,,  经验就是 数据该是什么类型就是什么类型,不要一概用String代替,boolean也是 不要有""
时间值是毫秒值,..... json串先用在线工具验证一下,,, 如果工具都还没通过验证 那肯定是费时费力

赞一个!!

#11


表示一直卡在这个错误,好像有大神给下格式code,心累.