11 lines
328 B
JavaScript
11 lines
328 B
JavaScript
import {PCastApi} from '../dist/node/index.js';
|
|
|
|
const applicationCredentials = {
|
|
id: 'phenixrts.com-alex.zinn',
|
|
secret: 'AMAsDzr.dIuGMZ.Zu52Dt~MQvP!DZwYg'
|
|
}
|
|
|
|
const pcastUri = 'https://pcast-stg.phenixrts.com';
|
|
const pcastApi = new PCastApi(pcastUri, applicationCredentials);
|
|
|
|
pcastApi.channels.list().then(console.log); |