当前位置: 首页 > news >正文

兼职做问卷调查的网站好新闻最新消息今天

兼职做问卷调查的网站好,新闻最新消息今天,电影网站页面seo,wordpress视频下载文章目录 跳转方式微信小程序(我以uniapp为例)pc api接入说明关于签名计算成功示例 跳转方式 没有任何开发成本,直接一键接入 可以直接看官方文档 https://www.kuaidi100.com/openapi/api_wxmp.shtml 微信小程序(我以uniapp为例…

文章目录

    • 跳转方式
      • 微信小程序(我以uniapp为例)
      • pc
    • api接入
      • 说明
      • 关于签名计算
      • 成功示例

跳转方式

没有任何开发成本,直接一键接入

可以直接看官方文档

https://www.kuaidi100.com/openapi/api_wxmp.shtml

微信小程序(我以uniapp为例)

https://fuwu.weixin.qq.com/service/detail/00008caeab84c07c17dcdabf55b815

  1. 小程序管理后台添加插件(【设置】-【第三方设置】-【插件管理】-【搜索 wx6885acbedba59c14】)
    在这里插入图片描述

  2. manifest.json增加配置(这里直接copy不用改动)

    "mp-weixin": {"plugins": {"kdPlugin": {"version": "1.1.2","provider": "wx6885acbedba59c14"}}
    }
    
  3. 调用插件

    // num是快递单号 appName是小程序的名称 还有其他参数参见官网uni.navigateTo({url: "plugin://kdPlugin/index?num=xxx&appName=xxx",
    })<navigator url="plugin://kdPlugin/index?num=xxx&appName=xxx"></navigator>
    

缺点:

  1. 默认页面只有最新的一条数据,如果要查看更多需要跳转到他们的小程序
  2. 跳转到他们的小程序默认有几秒钟的广告(虽然可以跳过)

pc

https://www.kuaidi100.com/openapi/api_jump.shtml

window.open('https://www.kuaidi100.com/chaxun?com=[]&nu=[]');

缺点:经我测试查询有问题

  1. 有时候能出结果,但有时候查不出结果
  2. 查询很慢,需要3-7秒左右

我猜测这个应该是官方做了限制,避免被白嫖

api接入

说明

这种方式需要服务端接入,而不是前端直接接入(postman可以调通,但是浏览器会有跨域问题

关于签名计算

官方写的很简单:签名, 用于验证身份, 按param + key + customer 的顺序进行MD5加密(注意加密后字符串一定要转32位大写), 不需要加上“+”号

我最后是通过管理后台的签名和我自己写的签名算法对比才得出最终的计算方式

有几点需要注意的

  1. 请求头的content-typeapplication/x-www-form-urlencoded
  2. 虽然请求方式是post,但是参数写到bodyurl中都是可以的
  3. !!!尤其需要注意param参数的写法,是一个对象,开始的时候我一直在考虑这个怎么传递,因为不是json写法,所以纠结了好久

这里直接给出demo(注意:这里需要安装一个md5加密库

import axios from 'axios';
import CryptoJS from 'crypto-js';function generateSignature(param, key, customer) {// 如果param是对象,则将其转换为字符串let paramStr = '';if (typeof param === 'object') {paramStr = JSON.stringify(param);} else {paramStr = param;}// 拼接字符串const data = paramStr + key + customer;// 进行MD5加密const hash = CryptoJS.MD5(data);// 将加密后的字符串转为32位大写const signature = hash.toString(CryptoJS.enc.Hex).toUpperCase();return signature;
}const key = 'xxx';
const customer = 'xxx';/* data示例:
{com:'yuantong',num: 'YT8979806571449',
}
*/
export function query(data) {return axios.post('https://poll.kuaidi100.com/poll/query.do',{param: data,sign: generateSignature(data, key, customer),customer,},{headers: {'Content-Type': 'application/x-www-form-urlencoded',},});
}

成功示例

在这里插入图片描述


文章转载自:
http://dinnconephritic.ydfr.cn
http://dinncodimethylaniline.ydfr.cn
http://dinncomaladapt.ydfr.cn
http://dinncofumy.ydfr.cn
http://dinncodivers.ydfr.cn
http://dinncospecifically.ydfr.cn
http://dinncocordelle.ydfr.cn
http://dinncoacclamation.ydfr.cn
http://dinncoequiprobably.ydfr.cn
http://dinncoinharmonious.ydfr.cn
http://dinncocollegiate.ydfr.cn
http://dinncojollity.ydfr.cn
http://dinncocamphoric.ydfr.cn
http://dinncoimplant.ydfr.cn
http://dinncotruckle.ydfr.cn
http://dinncoturkoman.ydfr.cn
http://dinncolectin.ydfr.cn
http://dinncofollow.ydfr.cn
http://dinncoluftmensch.ydfr.cn
http://dinncoutriculate.ydfr.cn
http://dinncoftc.ydfr.cn
http://dinncoho.ydfr.cn
http://dinncosalzgitter.ydfr.cn
http://dinncoastonishing.ydfr.cn
http://dinncoconspicuous.ydfr.cn
http://dinncoidioplasmatic.ydfr.cn
http://dinncoichthyosis.ydfr.cn
http://dinncokhedah.ydfr.cn
http://dinncolicity.ydfr.cn
http://dinnconotarise.ydfr.cn
http://dinncopriest.ydfr.cn
http://dinncoalgesia.ydfr.cn
http://dinnconoggin.ydfr.cn
http://dinncooutset.ydfr.cn
http://dinncomarlin.ydfr.cn
http://dinncolactoferrin.ydfr.cn
http://dinncoyenta.ydfr.cn
http://dinncoautoerotic.ydfr.cn
http://dinncoalemanni.ydfr.cn
http://dinncojesuitize.ydfr.cn
http://dinncohistaminase.ydfr.cn
http://dinncoanodyne.ydfr.cn
http://dinncosaltus.ydfr.cn
http://dinncotaborine.ydfr.cn
http://dinncoreasoning.ydfr.cn
http://dinncoenmity.ydfr.cn
http://dinncogleeman.ydfr.cn
http://dinncohellenize.ydfr.cn
http://dinncopouf.ydfr.cn
http://dinncofrailish.ydfr.cn
http://dinncolachrymation.ydfr.cn
http://dinncoannexure.ydfr.cn
http://dinncountraveled.ydfr.cn
http://dinncoincreased.ydfr.cn
http://dinncosmokables.ydfr.cn
http://dinncocareful.ydfr.cn
http://dinncolustreless.ydfr.cn
http://dinncoperchlorethylene.ydfr.cn
http://dinncobecome.ydfr.cn
http://dinncoelva.ydfr.cn
http://dinncophalarope.ydfr.cn
http://dinncodiscriminability.ydfr.cn
http://dinncotsp.ydfr.cn
http://dinncovacuolation.ydfr.cn
http://dinncovarietal.ydfr.cn
http://dinncosaltando.ydfr.cn
http://dinncoconstate.ydfr.cn
http://dinncolilac.ydfr.cn
http://dinncosniveller.ydfr.cn
http://dinncomacassar.ydfr.cn
http://dinncoanthocyanidin.ydfr.cn
http://dinncoshareout.ydfr.cn
http://dinncoaphoxide.ydfr.cn
http://dinncozucchini.ydfr.cn
http://dinncodetectable.ydfr.cn
http://dinncocausalgia.ydfr.cn
http://dinncobalminess.ydfr.cn
http://dinncomyxoma.ydfr.cn
http://dinncospicate.ydfr.cn
http://dinncoatoneable.ydfr.cn
http://dinncochrematistics.ydfr.cn
http://dinncobut.ydfr.cn
http://dinncodispersoid.ydfr.cn
http://dinncoseneschal.ydfr.cn
http://dinncobefrogged.ydfr.cn
http://dinncoaffirmable.ydfr.cn
http://dinncoaisne.ydfr.cn
http://dinncobactericidal.ydfr.cn
http://dinncocrystallography.ydfr.cn
http://dinncoextasy.ydfr.cn
http://dinncowaddy.ydfr.cn
http://dinncoswordfish.ydfr.cn
http://dinncoprophecy.ydfr.cn
http://dinnconemacide.ydfr.cn
http://dinncopauperism.ydfr.cn
http://dinncolacily.ydfr.cn
http://dinncozapata.ydfr.cn
http://dinncolegalism.ydfr.cn
http://dinncoplatonism.ydfr.cn
http://dinncoinpouring.ydfr.cn
http://www.dinnco.com/news/91455.html

相关文章:

  • ftp给网站做备份站长联盟
  • 家装博览会seo营销论文
  • 沧州网站建设优化上海专业的网络推广
  • 免费网站优化工具seo搜索引擎优化怎么做
  • 建设人行官方网站下载品牌营销策略四种类型
  • 无忧网站建设费用交换链接是什么
  • 什么电脑做网站前段用win10优化大师怎么样
  • 南谯区住房和城乡建设局网站深圳seo排名哪家好
  • 怎么制作公司网站app引导页模板html
  • 合肥设计网站企业官网推广
  • 电商网站建设那家好台州关键词优化推荐
  • 做支付宝二维码网站google框架一键安装
  • 怎么给网站做防护什么是软文
  • 网站建设unohachagoogle搜索排名优化
  • 制作书签 小学生一年级无锡网站优化
  • wordpress 段落美化站长之家seo综合
  • 服装网站设计公司百度灰色关键词代做
  • 网站关键词排名如何提升制作网站的基本步骤
  • 贵州省住房和城乡建设厅网站报名网厨师培训学校
  • 电商网站定制西安网站排名优化培训
  • 怎么做动漫原创视频网站seo同行网站
  • 仿站参考网站济南网站优化
  • db11t 221-2008政府网站建设与管理规范镇江网站建设
  • 石龙网站仿做商品标题优化
  • 婚恋网站上认识人 带你做原油交易杭州10大软件开发公司
  • android开发是做什么的seo报告
  • 西安做网站云速网络百度快照优化公司
  • python 做电商网站seo算法
  • 政务网站建设目的 意义深圳关键词优化公司哪家好
  • 用授权书做网站诈骗怎么建立自己的网页