Simple library which helps work with different search API such YouType Data Api
Simple application on Angular 5
Twitteras Application-only authentication available only server
import YouLink, {YoutubeProviderId, BingProviderId} from 'you-link';
YouLink.init([{
contentProvider: YoutubeProviderId,
apiKey: 'some-api-key'
}, {
contentProvider: BingProviderId,
apiKey: 'some-api-key'
}]);
- Extends from BaseContentProvider
- Implement this methods
get providerId()
get supportSearch()
get supportLinkParsing()
adaptContent()
sendSearchRequest()
sendGetContentByIdRequest()
parseContentId()
- Register this provider on init method in YouLink
case YourProvider:
this.providers.push(new YourProvider(options));
break;
- Write unit test!!!