基本的なローカル json ファイルがいくつかあります。key.io を使用して json データを視覚化したいと考えています。しかし、どういうわけか、イベントをキーンに送信できません。コンソールにエラーはありません。
var client = new Keen({
projectId: "key",
writeKey: "key"
});
var data = $.getJSON( "data/web_stories.json", function( data ) {
var storyData = data
Keen.ready(function(){
var multipleEvents = {
"stories": data
};
// Send multiple events to several collections
client.addEvents(multipleEvents, function(err, res){
if (err) {
console.log('there is an error!')
}
else {
console.log('data sent')
}
データはこんな感じ
[
{ link: "www.link.com",
heading: 'here is the heading',
image: "www.image.com" },
{ link: "www.link.com",
heading: 'here is the heading',
image: "www.image.com" }
]