This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using Proyecto26; | |
using SimpleJSON; | |
public class add_record_to_kintone : MonoBehaviour | |
{ | |
// Start is called before the first frame update | |
void Start() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"records": [ | |
{ | |
"recordID": { | |
"type": "RECORD_NUMBER", | |
"value": "1" | |
}, | |
"mychoice": { | |
"type": "DROP_DOWN", | |
"value": "hello" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my contents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"app": 1, | |
"ids": [100, 80], | |
"revisions": [1, 4] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var body = { | |
"app": kintone.app.getId(), | |
"record": kintone.app.record.getId() | |
}; | |
kintone.api(kintone.api.url('/k/v1/record/comments', true), 'GET', body, function(resp) { | |
// success | |
console.log(resp); | |
}, function(error) { | |
// error |