Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
blip-sdk-web
Advanced tools
SDK to easily add BLiP conversations (chatbots) in your Web page. For more information see BLiP portal and BLiP documentation.
Add the script element inside the body of your web page. Put your apikey as asked. To get your apikey please enter in contact with BLiP team That's all :)
<script src="https://unpkg.com/blip-sdk-web" type="text/javascript"></script>
<script>
(function () {
window.onload = function () {
new BlipWebSDK.ChatBuilder()
.withApiKey('PUT-YOUR-API-KEY-HERE')
.build();
}
})();
</script>
If you are using ES6, simply install the blip-sdk-web
package from the npm registry.
npm install blip-sdk-web
import * as BlipWebSDK from 'blip-sdk-web';
new BlipWebSDK.ChatBuilder()
.withApiKey('PUT-YOUR-API-KEY-HERE')
.build();
bower install blip-sdk-web
<script src="your-project/bower_components/blip-sdk-web/dist/blipWebSdk.js" type="text/javascript"></script>
<script>
(function () {
new BlipWebSDK.ChatBuilder()
.withApiKey('PUT-YOUR-API-KEY-HERE')
.build();
})();
</script>
This SDK use UMD to module export. If your project use same AMD, please use 'BlipWebSDK' identifier to resolve the library dependency.
A application that use dojo.js as your AMD
<script src="//ajax.googleapis.com/ajax/libs/dojo/1.12.1/dojo/dojo.js"></script>
<script type="text/javascript" src="https://unpkg.com/blip-sdk-web"></script>
<script>
require(['BlipWebSDK'], function (sdk) {
new sdk.ChatBuilder()
.withApiKey('0070F943-4024-4FED-A3BA-BDD50D324F6E')
.build();
});
</script>
You can also define optional parameters passing an object inside build() method, as you can see below:
Option | Description |
---|---|
authType | User authentication type (BlipWebSDK.AuthType) ∗ |
title | Title of chat window |
target | Target element id for embedding sdk |
onEnter | Callback action on enter chat |
onLeave | Callback action on leave chat |
zIndex | Define zIndex value for chat window. (Default value: 16000001) |
∗ Possible values for authType are: 'Guest', 'Login' and 'Dev'. You can access them using 'BlipWebSDK.AuthType' class. 'Guest' type will be used as default If you do not define 'authType'. To see more details about authentication types click here
var options = {
title: 'Send a message',
onEnter: function() {
console.log("I'm in the chat!");
},
onLeave: function() {
console.log("I'm out the chat!");
}
};
new BlipWebSDK.ChatBuilder()
.withApiKey('PUT-YOUR-API-KEY-HERE')
.build(options);
var options = {
authType: BlipWebSDK.AuthType.LOGIN_AUTH,
title: 'Send a message',
target: 'your-element-id',
onEnter: function() {
console.log("I'm in the chat!");
},
onLeave: function() {
console.log("I'm out the chat!");
}
};
new BlipWebSDK.ChatBuilder()
.withApiKey('PUT-YOUR-API-KEY-HERE')
.build(options);
To destroy BLiP widget you must use a destroy method on chat builder variable.
var options = {
title: 'Send a message',
onEnter: function() {
console.log("I'm in the chat!");
},
onLeave: function() {
console.log("I'm out the chat!");
}
};
var chatBuilder = new BlipWebSDK.ChatBuilder()
.withApiKey('PUT-YOUR-API-KEY-HERE')
.build(options);
//To destroy widget use:
chatBuilder.destroy();
//To recreate widget use:
chatBuilder = new BlipWebSDK.ChatBuilder()
.withApiKey('PUT-YOUR-API-KEY-HERE')
.build(options);
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
FAQs
Blip SDK for web
The npm package blip-sdk-web receives a total of 1 weekly downloads. As such, blip-sdk-web popularity was classified as not popular.
We found that blip-sdk-web demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.