|
|
|
|
|
Brightcove :
Developers :
Player APIs :
Getting sharing config options in Player API
|
|
|
|
|
|
|

|
Getting sharing config options in Player API
|
|
BryanDev
Visitor
Posts: 5
Registered: 10-01-2009

Message 1 of 3

Viewed 97 times
|

|
|
Is there any way to get a players sharing config options through the player api? In the publishing console, under a player->video player a user can select under viral promotion tools email sharing, get link and blog this& get code. I want to know the values of those checkboxes at runtime through the player api. Seems like their must be a way to know but I cannot find anything. Thanks
|
|
|
|
11-02-2009 03:19 PM
|
|
|
|
|

|
Re: Getting sharing config options in Player API
|
|
BC-Todd
Administrator
Posts: 454
Registered: 12-21-2008

Message 2 of 3

Viewed 94 times
|

|
|
These are true by default. You can use: experienceModule.getConfiguredPropertiesForID("videoPlayer") This will return an object (if anything is set, otherwise it will return null, so be sure to check) that has any number of properties. The ones you are interested in are: allowLink allowEmail allowViralTitle If any of these is "false", it means the default has been overridden. --todd
|
|
|
|
11-02-2009 03:41 PM
|
|
|
|
|
|
|
|
|
|
|