本站改版新增arduino频道

Micropython
Arduino

micropython wifi联网请求json接口


import urequests

import json

import network

#连接WiFi

sta_if = network.WLAN(network.STA_IF)

if not sta_if.isconnected():

    print('connecting to network...')

    sta_if.active(True)

    sta_if.connect('!!wifiname', '!!passwd')

    while not sta_if.isconnected():

        pass

print('network config:', sta_if.ifconfig())

#get请求的头部信息

head = {"User-Agent":'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36'}

#B站获取用户信息的URL

url = 'https://api.bilibili.com/x/relation/stat?vmid=!!yourid&jsonp=jsonp'

#获取信息

r = urequests.get(url,headers = head)

#将信息中需要的部分弄出来

datadict = json.loads(r.text)['data']

print('follower is:' + str(datadict['follower']))

print('following is:' + str(datadict['following']))

#以下是具体返回回来的信息

#{"code":0,"message":"0","ttl":1,"data":{"mid":429xxxx,"following":59,"whisper":0,"black":0,"follower":21}}



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0098340511322021 seconds