![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.
@vonage/client-sdk
Advanced tools
The Client SDK is intended to provide a ready solution for developers to build Programmable Conversation applications across multiple Channels including: Messages, Voice, SIP, websockets, and App.
The Client SDK is intended to provide a ready solution for developers to build Programmable Conversation applications across multiple Channels including: Messages, Voice, SIP, websockets, and App.
⚠️ Warning: Chat Functionality (Beta)
The chat functionality in our SDK is currently in beta. Methods related to chat may undergo changes as we refine and improve this feature. Please be aware of potential updates as we work towards its stability. Your feedback is valuable in shaping its development.
The SDK can be installed using the npm install command
npm i @vonage/client-sdk
import { VonageClient, ClientConfig, ConfigRegion } from '@vonage/client-sdk';
import { useState, useEffect } from 'react';
function App() {
// Config is optional but recomended, default region is US
const [config] = useState(() => new ClientConfig(ConfigRegion.US));
const [client] = useState(() => {
const client = new VonageClient();
client.setConfig(config);
return client;
});
const [session, setSession] = useState();
const [user, setUser] = useState();
const [error, setError] = useState();
// Create Session as soon as client is available
useEffect(() => {
if (!client) return;
client
.createSession('my-token')
.then((session) => setSession(session))
.catch((error) => setError(error));
}, [client]);
// Get User as soon as a session is available
useEffect(() => {
if (!client || !session) return;
client
.getUser('me')
.then((user) => setUser(user))
.catch((error) => setError(error));
}, [client, session]);
if (error) return <pre>{JSON.stringify(error)}</pre>;
if (!session || !user) return <div>Loading...</div>;
return <div>User {user.displayName || user.name} logged in</div>;
}
export default App;
<!-- <script src="./node_modules/@vonage/client-sdk/dist/vonageClientSDK.js"></script> -->
<!-- <script src="https://cdn.jsdelivr.net/npm/@vonage/client-sdk@1.0.0/dist/vonageClientSDK.min.js"></script> -->
<script src="./node_modules/@vonage/client-sdk/dist/vonageClientSDK.min.js"></script>
<script>
const token = 'my-token';
const client = new vonageClientSDK.VoiceClient();
const config = new vonageClientSDK.ClientConfig(
vonageClientSDK.ConfigRegion.EU
);
client.setConfig(config);
client.createSession(token).then((Session) => {});
</script>
import {
VonageClient,
ClientConfig,
ConfigRegion
} from 'https://cdn.jsdelivr.net/npm/@vonage/client-sdk@1.0.0/dist/vonageClientSDK.esm.min.js';
const client = new VonageClient();
// Config is optional but recomended, default region is US
const config = new ClientConfig(ConfigRegion.US);
client.setConfig(config);
(async () => {
const token = 'my-token';
try {
// Create Session
const sessionId = await client.createSession(token);
// Get User
const user = await client.getUser('me');
console.log(
`User ${
user.displayName || user.name
} logged in with session ID: ${sessionId}`
);
} catch (error) {
// Log errors for either createSession or getUser
console.error(error);
}
})();
Below are several typical scenarios where the SDK is commonly utilized.
Visit Vonage website
Copyright (c) 2023 Vonage, Inc. All rights reserved. Licensed only under the Vonage Client SDK License Agreement (the "License") located at LICENSE.
By downloading or otherwise using our software or services, you acknowledge that you have read, understand and agree to be bound by the Vonage Client SDK License Agreement and Privacy Policy.
You may not use, exercise any rights with respect to or exploit this SDK, or any modifications or derivative works thereof, except in accordance with the License.
FAQs
The Client SDK is intended to provide a ready solution for developers to build Programmable Conversation applications across multiple Channels including: Messages, Voice, SIP, websockets, and App.
We found that @vonage/client-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.