- Notifications
You must be signed in to change notification settings - Fork1
An automatically generated Node.js client library for Factom Harmony Connect.
License
FPriv/factom-harmony-connect-node-client
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This is an automatically generated Node.js client library forFactom Harmony Connect.
Connect is the fastest way to add blockchain capabilities to your app without cryptocurrencies, wallets, or network nodes.Create an account to get your free API key for the sandbox environment.
- API version: 1.0.17
- Package version: 1.0.7
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
For more information, you can view the Connect documentation athttps://docs.harmony.factom.com
ForNode.js
You can install this package via:
npm install harmony-connect-client --save
To use the library locally without using a remote npm registry, first install the dependencies by changinginto the directory containingpackage.json
(and this README). Let's call thisJAVASCRIPT_CLIENT_DIR
. Then run:
npm install
Next,link it globally in npm with the following, also fromJAVASCRIPT_CLIENT_DIR
:
npm link
Finally, switch to the directory you want to use your harmony-connect-client from, and run:
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
You should now be able torequire('harmony-connect-client')
in javascript files from the directory you ran the lastcommand above from.
To install the package via the git repository:
npm install FactomProject/factom-harmony-connect-node-client --save
The library also works in the browser environment via npm andbrowserify. After followingthe above steps with Node.js and installing browserify withnpm install -g browserify
,perform the following (assumingmain.js is your entry file, that's to say your javascript file where you actuallyuse this library):
browserify main.js> bundle.js
Then includebundle.js in the HTML pages.
Using Webpack you may encounter the following error: "Module not found: Error:Cannot resolve module", most certainly you should disable AMD loader. Add/mergethe following section to your webpack config:
module:{rules:[{parser:{amd:false}}]}
Please follow theinstallation instruction and execute the following JS code:
varHarmonyConnectClient=require('harmony-connect-client');vardefaultClient=HarmonyConnectClient.ApiClient.instance;// Configure API key authorization: AppIdvarAppId=defaultClient.authentications['AppId'];AppId.apiKey="YOUR API KEY"// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)//AppId.apiKeyPrefix['app_id'] = "Token"// Configure API key authorization: AppKeyvarAppKey=defaultClient.authentications['AppKey'];AppKey.apiKey="YOUR API KEY"// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)//AppKey.apiKeyPrefix['app_key'] = "Token"varapi=newHarmonyConnectClient.ChainsApi()varchainId=285904;// {String} Chain identifiervarcallback=function(error,data,response){if(error){console.error(error);}else{console.log('API called successfully. Returned data: '+data);}};api.getChainByID(chainId,callback);
All URIs are relative tohttps://connect-shared-sandbox-2445582615332.production.gw.apicast.io/v1
Class | Method | HTTP request | Description |
---|---|---|---|
HarmonyConnectClient.ChainsApi | getChainByID | GET /chains/{chain_id} | Get Chain Info |
HarmonyConnectClient.ChainsApi | getChains | GET /chains | Get All Chains |
HarmonyConnectClient.ChainsApi | postChain | POST /chains | Create a Chain |
HarmonyConnectClient.ChainsApi | postChainSearch | POST /chains/search | Search Chains |
HarmonyConnectClient.EntriesApi | getEntriesByChainID | GET /chains/{chain_id}/entries | Get Chain's Entries |
HarmonyConnectClient.EntriesApi | getEntryByHash | GET /chains/{chain_id}/entries/{entry_hash} | Get Entry Info |
HarmonyConnectClient.EntriesApi | getFirstEntry | GET /chains/{chain_id}/entries/first | Get Chain's First Entry |
HarmonyConnectClient.EntriesApi | getLastEntry | GET /chains/{chain_id}/entries/last | Get Chain's Last Entry |
HarmonyConnectClient.EntriesApi | postEntriesSearch | POST /chains/{chain_id}/entries/search | Search Chain's Entries |
HarmonyConnectClient.EntriesApi | postEntryToChainID | POST /chains/{chain_id}/entries | Create an Entry |
HarmonyConnectClient.InfoApi | getApiInfo | GET / | API Info |
- HarmonyConnectClient.AllInfo
- HarmonyConnectClient.AllInfoLinks
- HarmonyConnectClient.Chain
- HarmonyConnectClient.ChainCreate
- HarmonyConnectClient.ChainData
- HarmonyConnectClient.ChainDataDblock
- HarmonyConnectClient.ChainDataEblock
- HarmonyConnectClient.ChainDataEntries
- HarmonyConnectClient.ChainLink
- HarmonyConnectClient.ChainList
- HarmonyConnectClient.ChainListData
- HarmonyConnectClient.ChainShort
- HarmonyConnectClient.Entry
- HarmonyConnectClient.EntryCreate
- HarmonyConnectClient.EntryData
- HarmonyConnectClient.EntryDataDblock
- HarmonyConnectClient.EntryDataEblock
- HarmonyConnectClient.EntryList
- HarmonyConnectClient.EntryListChain
- HarmonyConnectClient.EntryListData
- HarmonyConnectClient.EntrySearchResponse
- HarmonyConnectClient.EntrySearchResponseData
- HarmonyConnectClient.EntryShort
- HarmonyConnectClient.SearchBody
- Type: API key
- API key parameter name: app_id
- Location: HTTP header
- Type: API key
- API key parameter name: app_key
- Location: HTTP header
For more information, you can view the Connect documentation athttps://docs.harmony.factom.com
For additional support, contact us atharmony-support@factom.com
About
An automatically generated Node.js client library for Factom Harmony Connect.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Contributors3
Uh oh!
There was an error while loading.Please reload this page.