微信公众平台JSSDK开发

Posted 小水皮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信公众平台JSSDK开发相关的知识,希望对你有一定的参考价值。

原文:http://www.cnblogs.com/soundcode/p/5220737.html

根据微信开发文档步骤如下
1.先登录微信公众平台进入“公众号设置”的“功能设置”里填写“JS接口安全域名”。 JS接口安全域名设置 mi.com(前面不用带www/http,域名必须备案过)
2.引入JS文件 在需要调用JS接口的页面引入如下JS文件,(支持https):http://res.wx.qq.com/open/js/jweixin-1.0.0.js
3.通过config接口注入权限验证配置

1
2
3
4
5
6
7
8
wx.config({
    debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    appId: \'\'// 必填,公众号的唯一标识
    timestamp: , // 必填,生成签名的时间戳
    nonceStr: \'\'// 必填,生成签名的随机串
    signature: \'\',// 必填,签名,见附录1
    jsApiList: [] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
});

 4.通过ready接口处理成功验证

1
2
3
4
wx.ready(function(){
 
    // config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在ready函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数中。
});

 5.通过error接口处理失败验证,测试时可以先不用这个

1
2
3
4
5
wx.error(function(res){
 
    // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
 
});

 

JS-SDK网页所有接口代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
<?php
require_once "jssdk.php";
$jssdk new JSSDK("wx46c6ccb293dfsda5fd""e5e7ad8f4b068f118939f2cec0bc98394d");   //APPID和SECRET
$signPackage $jssdk->GetSignPackage();
?>
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>微信JS-SDK Demo</title>
  <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0">
   <link rel="stylesheet" href="http://demo.open.weixin.qq.com/jssdk/css/style.css?ts=1420774989">   
</head>
<body>
<div class="wxapi_container">
    <div class="wxapi_index_container">
      <ul class="label_box lbox_close wxapi_index_list">
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-basic">基础接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-share">分享接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-image">图像接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-voice">音频接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-smart">智能接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-device">设备信息接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-location">地理位置接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-webview">界面操作接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-scan">微信扫一扫接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-shopping">微信小店接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-card">微信卡券接口</a></li>
        <li class="label_item wxapi_index_item"><a class="label_inner" href="#menu-pay">微信支付接口</a></li>
      </ul>
    </div>
    <div class="lbox_close wxapi_form">
      <h3 id="menu-basic">基础接口</h3>
      判断当前客户端是否支持指定JS接口
      <button class="btn btn_primary" id="checkJsApi">checkJsApi</button>
 
      <h3 id="menu-share">分享接口</h3>
      获取“分享到朋友圈”按钮点击状态及自定义分享内容接口
      <button class="btn btn_primary" id="onMenuShareTimeline">onMenuShareTimeline</button>
      获取“分享给朋友”按钮点击状态及自定义分享内容接口
      <button class="btn btn_primary" id="onMenuShareAppMessage">onMenuShareAppMessage</button>
      获取“分享到QQ”按钮点击状态及自定义分享内容接口
      <button class="btn btn_primary" id="onMenuShareQQ">onMenuShareQQ</button>
      获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口
      <button class="btn btn_primary" id="onMenuShareWeibo">onMenuShareWeibo</button>
 
      <h3 id="menu-image">图像接口</h3>
      拍照或从手机相册中选图接口
      <button class="btn btn_primary" id="chooseImage">chooseImage</button>
      预览图片接口
      <button class="btn btn_primary" id="previewImage">previewImage</button>
      上传图片接口
      <button class="btn btn_primary" id="uploadImage">uploadImage</button>
      下载图片接口
      <button class="btn btn_primary" id="downloadImage">downloadImage</button>
 
      <h3 id="menu-voice">音频接口</h3>
      开始录音接口
      <button class="btn btn_primary" id="startRecord">startRecord</button>
      停止录音接口
      <button class="btn btn_primary" id="stopRecord">stopRecord</button>
      播放语音接口
      <button class="btn btn_primary" id="playVoice">playVoice</button>
      暂停播放接口
      <button class="btn btn_primary" id="pauseVoice">pauseVoice</button>
      停止播放接口
      <button class="btn btn_primary" id="stopVoice">stopVoice</button>
      上传语音接口
      <button class="btn btn_primary" id="uploadVoice">uploadVoice</button>
      下载语音接口
      <button class="btn btn_primary" id="downloadVoice">downloadVoice</button>
 
      <h3 id="menu-smart">智能接口</h3>
      识别音频并返回识别结果接口
      <button class="btn btn_primary" id="translateVoice">translateVoice</button>
 

(c)2006-2024 SYSTEM All Rights Reserved IT常识