Authentication
Get credentials and authorize the Multiset client before starting a session
Get Your Credentials
Authorize the Client
import { MultisetClient } from '@multisetai/vps/core';
const client = new MultisetClient({
clientId: 'YOUR_CLIENT_ID',
clientSecret: 'YOUR_CLIENT_SECRET',
mapType: 'map', // 'map', 'map-set', or 'object-tracking'
code: 'MAP_XXXXXXXXXX',
});
await client.authorize();const client = new MultisetClient({
clientId: 'YOUR_CLIENT_ID',
clientSecret: 'YOUR_CLIENT_SECRET',
mapType: 'map-set',
code: 'MAPSET_XXXXXXXXXX',
});CORS Configuration
Environment Variables
Last updated
Was this helpful?

