Dieses Mal habe ich eine App mit einem Feldcode namens "Text1" erstellt.
Schreiben Sie die Daten "abcde".
#!/usr/bin/python
# _*_ coding: utf-8 _*_
import requests
URL = "https://◯◯◯◯.cybozu.com:443" # URL
APP_ID = "APP ID" #Kintone App ID
API_TOKEN = "API TOKEN" #Kintone-API-Token
class KINTONE:
def PostToKintone(self, url, appId, apiToken):
#KINTONE field code: Text1
record={'Text1':{'value' : 'abcde'}} #Feldcode und zu schreibende Daten
data = {'app':appId,'record':record}
headers = {"X-Cybozu-API-Token": apiToken, "Content-Type" : "application/json"}
resp=requests.post(url+'/k/v1/record.json',json=data,headers=headers)
return resp
if __name__ == '__main__':
knt=KINTONE()
resp=knt.PostToKintone(URL, APP_ID, API_TOKEN)
print resp.text
Die Ausgabe ist
{"id":"1","revision":"1"}
Ich fühlte mich glücklich neben mir.
Recommended Posts