Page Title: Databox Developers

  • This webpage makes use of the TITLE meta tag - this is good for search engine optimization.

Page Description:

  • This webpage DOES NOT make use of the DESCRIPTION meta tag - this is NOT GOOD for search engine optimization.

Page Keywords:

  • This webpage DOES NOT make use of the KEYWORDS meta tag - whilst search engines nowadays do not put too much emphasis on this meta tag including them in your website does no harm.

Page Text: Go Python curl https://push.databox.com \ -u 2cdt4yoytbvockc51cowgs4gsss84ow4s: \ -X POST \ -H 'Content-Type: application/json' \ -H 'Accept: application/vnd.databox.v2+json' \ -d '{ "data":[ { "$sales": 83000, "date": "2018-01-19" }, { "$sales": 4000, "date": "2018-01-20 16:07:37-06:00" } ] }' use Databox\Client; $c = new Client('2cdt4yoytbvockc51cowgs4gsss84ow4s'); $c->insertAll([ ['sales', 83000, '2018-01-19'], ['sales', 4000, '2018-01-20 16:07:37-06:00'], ]); var Databox = require('databox'); var client = new Databox({ push_token: '2cdt4yoytbvockc51cowgs4gsss84ow4s' }); client.insertAll([ { key: 'sales', value: 83000, date: '2018-01-19' }, { key: 'sales', value: 4000, date: '2018-01-20 16:07:37-06:00' } ]); Databox.configure do |c| c.push_token = '2cdt4yoytbvockc51cowgs4gsss84ow4s' end client = Databox::Client.new client.insert_all [ {key: 'sales', value: 83000, date: '2018-01-19'}, {key: 'sales', value: 4000, date: '2018-01-20 16:07:37-06:00'} ] String TOKEN = "2cdt4yoytbvockc51cowgs4gsss84ow4s"; Databox databox = new Databox(TOKEN); try { List kpis = new ArrayList(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()); kpis.add(new Databox.KPI().setKey("sales").setValue(83000).setDate(sdf.parse("2018-01-19"))); kpis.add(new Databox.KPI().setKey("sales").setValue(4000).setDate(sdf.parse("2018-01-20 16:07:37-06:00"))); databox.push(kpis); } catch (Exception e) { System.err.println(e.getLocalizedMessage()); } package main import ( databox "github.com/databox/databox-go" "fmt" ) func main() { client := databox.NewClient("2cdt4yoytbvockc51cowgs4gsss84ow4s") if _, error := client.Push(&databox.KPI{ Key: "sales", Value: 83000, Date: "2018-01-19", }); error != nil { fmt.Println("Inserted.") } } from databox import Client client = Client('2cdt4yoytbvockc51cowgs4gsss84ow4s') client.insert_all([ {'key': 'sales', 'value': 83000, 'date': '2018-01-19'}, {'key': 'sales', 'value': 4000, 'date': '2018-01-20 16:07:37-06:00'}, ]) Dates format like ‘YYYY-MM-DD’ (i.e. 2018-01-19) will translate to 2018-01-19 00:00:00 UTC. If you omit the date parameter, the current date and time (in UTC) will be used by default. To avoid discrepancies in your data, you should double-check that all of your data has a timezone specified, or is in UTC. Learn more about time zones 2022 © Databox, Inc. All Rights Reserved.

  • This webpage has 456 words which is between the recommended minimum of 250 words and the recommended maximum of 2500 words - GOOD WORK.

Header tags:

  • It appears that you are using header tags - this is a GOOD thing!

Your header tags:

Spelling errors:

  • This webpage has 1 words which may be misspelt.

Possibly mis-spelt word: 2cdt4yoytbvockc51cowgs4gsss84ow4s

Broken links:

  • This webpage has 2 broken links.

Broken image links:

  • This webpage has no broken image links that we can detect - GOOD WORK.

CSS over tables for layout?:

  • It appears that this page uses DIVs for layout this is a GOOD thing!

Last modified date:

  • We were unable to detect what date this page was last modified

Images that are being re-sized:

  • This webpage has no images that are being re-sized by the browser - GOOD WORK.

Images that are being re-sized:

  • This webpage has no images that are missing their width and height - GOOD WORK.

Mobile friendly:

  • After testing this webpage it appears to be mobile friendly - this is a GOOD thing!

Links with no anchor text:

  • This webpage has no links that are missing anchor text - GOOD WORK.

W3C Validation:

Print friendly?:

  • It appears that the webpage does NOT use CSS stylesheets to provide print functionality - this is a BAD thing.

GZIP Compression enabled?:

  • It appears that the serrver does NOT have GZIP Compression enabled - this is a NOT a good thing!