Interface IAssetSources.ISocialNetworkSourceConfig
A structure defining the API key of social networking services.
Package: @aurigma/design-editor-iframe
Examples
{
"assetSources": {
"Facebook": {
"type": "SocialNetworkSource",
"network": "facebook",
"apiKey": "123456789012345"
},
"Instagram": {
"type": "SocialNetworkSource",
"network": "instagram",
"apiKey": "88884444aaaa222288883333ffff6666"
}
},
"widgets": {
"Toolbox": { "buttons": [ "Image" ] },
"AssetManager": {
"tabs": [
{
"name": "Facebook",
"assetSourceInstance": "Facebook",
},
{
"name": "Instagram",
"assetSourceInstance": "Instagram",
}
]
}
}
}
Properties
apiKey
The key required to use an API of the social networking service.
Declaration
apiKey: string;
Property Value
| Type | Description |
|---|---|
| string | The key required to use an API of the social networking service. |
network
The name of a social networking service.
Declaration
network: SocialNetwotkSourceType;
Property Value
| Type | Description |
|---|---|
| SocialNetwotkSourceType | The name of a social networking service. |