Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kfrancis/geckonet
A comprehensive C# API wrapper library for accessing Geckoboard.com, using XML or JSON to read/write.
https://github.com/kfrancis/geckonet
Last synced: about 1 month ago
JSON representation
A comprehensive C# API wrapper library for accessing Geckoboard.com, using XML or JSON to read/write.
- Host: GitHub
- URL: https://github.com/kfrancis/geckonet
- Owner: kfrancis
- License: mit
- Created: 2013-02-05T15:39:41.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2023-05-31T19:21:44.000Z (over 1 year ago)
- Last Synced: 2024-08-09T21:23:48.831Z (5 months ago)
- Language: C#
- Size: 15.2 MB
- Stars: 8
- Watchers: 2
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
geckonet
========A comprehensive C# API wrapper library for accessing Geckoboard.com, using XML or JSON to read/write widget data easily using strong-typed models using the documentation listed [here](https://developer-custom.geckoboard.com/#introduction).
## Usage
To see how the endpoints from the asp.net web api project work, do the following to enter the following information for the custom widget on your geckoboard.
1. Click "Add widget"
2. Select the category "Custom Widgets"
3. Select a widget, like "RAG Numbers"
4. Enter the following information:**Method:** Polling
**URL data feed:** http://geckonet.azurewebsites.net/api/Widgets/
**API key:** A valid guid, since the site uses guid-based authorization. Should be 27c4168c-5b25-44ac-824a-e77a2984522c
**Widget type:** Custom
**Feed Format:** JSON
**Request Type:** GET
**Reload Time:** 15 Minutes5. To finish, click "Add to Dashboard".
The widget should then appear on your dashboard with random data everytime it's refreshed.
## Live Examples
### Live Widget Endpoints
* `http://geckonet.azurewebsites.net/api/widgets/numberandsecondarystat?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`
* `http://geckonet.azurewebsites.net/api/widgets/ragnumbersonly?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`
* `http://geckonet.azurewebsites.net/api/widgets/ragcolumnandnumbers?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`
* `http://geckonet.azurewebsites.net/api/widgets/text?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`### Live Chart Endpoints
* `http://geckonet.azurewebsites.net/api/charts/map?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`
* `http://geckonet.azurewebsites.net/api/charts/line?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`
* `http://geckonet.azurewebsites.net/api/charts/geckometer?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`
* `http://geckonet.azurewebsites.net/api/charts/funnel?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`
* `http://geckonet.azurewebsites.net/api/charts/bullet?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`
* `http://geckonet.azurewebsites.net/api/charts/highchart?apiKey=27c4168c-5b25-44ac-824a-e77a2984522c`#### Thanks!
Kori Francis ([@djbyter](http://twitter.com/djbyter))