![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ZOKO REST APIs provide programmable access to reach your customers and conduct business on your approved social channels
ZokoApi - JavaScript client for zoko_api
json https://chat.api.zoko.io/v2
This SDK is automatically generated by the OpenAPI Generator project:
To publish the library as a npm, please follow the procedure in "Publishing npm packages".
Then install it via:
npm install zoko_api --save
Finally, you need to build the module:
npm run build
To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json
(and this README). Let's call this JAVASCRIPT_CLIENT_DIR
. Then run:
npm install
Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR
:
npm link
To use the link you just defined in your project, switch to the directory you want to use your zoko_api from, and run:
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
Finally, you need to build the module:
npm run build
If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:
npm install GIT_USER_ID/GIT_REPO_ID --save
The library also works in the browser environment via npm and browserify. After following
the above steps with Node.js and installing browserify with npm install -g browserify
,
perform the following (assuming main.js is your entry file):
browserify main.js > bundle.js
Then include bundle.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/merge the following section to your webpack config:
module: {
rules: [
{
parser: {
amd: false
}
}
]
}
Please follow the installation instruction and execute the following JS code:
var ZokoApi = require('zoko_api');
var defaultClient = ZokoApi.ApiClient.instance;
// Configure API key authorization: API_Key_Authentication
var API_Key_Authentication = defaultClient.authentications['API_Key_Authentication'];
API_Key_Authentication.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//API_Key_Authentication.apiKeyPrefix['apikey'] = "Token"
var api = new ZokoApi.AccountApi()
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.accountTemplatesGet(callback);
All URIs are relative to https://message.zoko.io/v2
Class | Method | HTTP request | Description |
---|---|---|---|
ZokoApi.AccountApi | accountTemplatesGet | GET /account/templates | Get Message Templates |
ZokoApi.CustomerApi | customerIdGet | GET /customer/{id} | Get Customer |
ZokoApi.CustomerApi | customerIdMessagesDelete | DELETE /customer/{id}/messages | Delete Messages |
ZokoApi.MessageApi | messageIdAttachmentAttachmentIdGet | GET /message/{id}/attachment/{attachmentId} | Get Message Attachment |
ZokoApi.MessageApi | messageIdDelete | DELETE /message/{id} | Delete message |
ZokoApi.MessageApi | messageIdGet | GET /message/{id} | Get Message |
ZokoApi.MessageApi | messageIdHistoryGet | GET /message/{id}/history | Get Message History |
ZokoApi.MessageApi | messagePost | POST /message | Send Message |
ZokoApi.WebhookApi | webhookGet | GET /webhook | List Webhooks |
ZokoApi.WebhookApi | webhookIdDelete | DELETE /webhook/{id} | Delete Webhook |
ZokoApi.WebhookApi | webhookIdGet | GET /webhook/{id} | Get Webhook |
ZokoApi.WebhookApi | webhookIdPut | PUT /webhook/{id} | Update Webhook |
ZokoApi.WebhookApi | webhookPost | POST /webhook | Create Webhook |
ZokoApi.WhatsAppGroupApi | channelsWhatsappGroupGet | GET /channels/whatsapp/group | List Groups |
ZokoApi.WhatsAppGroupApi | channelsWhatsappGroupIdGet | GET /channels/whatsapp/group/{id} | Get Group |
ZokoApi.WhatsAppGroupApi | channelsWhatsappGroupIdInviteUrlDelete | DELETE /channels/whatsapp/group/{id}/inviteUrl | Delete Group Invite URL |
ZokoApi.WhatsAppGroupApi | channelsWhatsappGroupIdInviteUrlGet | GET /channels/whatsapp/group/{id}/inviteUrl | Get Group Invite URL |
ZokoApi.WhatsAppGroupApi | channelsWhatsappGroupIdMembersDelete | DELETE /channels/whatsapp/group/{id}/members | Delete Group Members |
ZokoApi.WhatsAppGroupApi | channelsWhatsappGroupIdMembersGet | GET /channels/whatsapp/group/{id}/members | Get Group Members |
ZokoApi.WhatsAppGroupApi | channelsWhatsappGroupPost | POST /channels/whatsapp/group | Create Group |
FAQs
ZOKO REST APIs provide programmable access to reach your customers and conduct business on your approved social channels
The npm package zoko receives a total of 1 weekly downloads. As such, zoko popularity was classified as not popular.
We found that zoko demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.