美文网首页
5118api接口

5118api接口

作者: 月夜星空下 | 来源:发表于2020-06-29 18:01 被阅读0次
    import json
    
    import requests
    
    headers = {'Content-Type': 'application/x-www-form-urlencoded', 'Authorization': '7DFC27E2A121441A9C9CF348CC202D03'}#消息头,根据实际需要添加
    url = "http://apis.5118.com/wyc/title" #地址
    Body = {'txt': '恳请儿子按照上面写的做法,花40天的时间修复一下夫妻感情,为挽救自己的婚姻做最后的努力。他告诉儿子,他并不是不爱妻子了,只是忘记了怎样去爱。凯勒答应了,在工作之余,他照本宣科地做起了笔记上的事,在妻子发火的时候不抱怨、为妻子准备一顿早餐,在妻子生病时,贴心倒水喂药,泡咖啡、洗碗、打扫卫生、买鲜花、烛光晚餐'} #入参
    
    # dataJson = json.dumps(data) #将 dict转成str
    # print(data)
    res = requests.post(url, headers=headers, data=Body) #接口调用
    print(res)
    
    # resTest = json.loads(res .text) #将返回结果str转成dict
    resTest = json.loads(res .text)
    print(resTest['data'])
    

    相关文章

      网友评论

          本文标题:5118api接口

          本文链接:https://www.haomeiwen.com/subject/wyrafktx.html