Gracenote API - No track link data

我的梦境 提交于 2020-01-07 04:38:16

问题


Currently, in my AppDelegate, I have an instance variable declared for GNConfig that is set up with all properties I would like to receive.

This instance of GNconfig is used by any class that makes a gracenote request.

The requests I am using are recognition from an audio stream, recognition by local file and a text search which populates an array. The array is then used for track lookups by id for the corresponding array item.

I am able to get all the content I need, except for track and album link data (always returns null).

I have tried plenty of different suggestions and guides with no luck.

Could somebody please help me out? This data is essential to my app and my app is pretty much complete except for this big obstacle.

Thanks in advance.

** edit **

This is in my appDelegate:

_gnConfig = [GNConfig init:@"XXXXXXX-XXXXXXXXXXXXXXXXXXXXXXX"];
[_gnConfig setProperty:@"content.coverArt" value:@"1"];
[_gnConfig setProperty:@"content.coverArt.sizePreference" value:@"LARGE"];
[_gnConfig setProperty:@"content.allowFullResponse" value:@"1"];

I have this in one of my class methods:

NSURL *filePath = [item valueForProperty:MPMediaItemPropertyAssetURL];
[GNOperations recognizeMIDFileFromFile:self config:[[AppDelegate sharedDelegate] gnConfig] fileUrl:filePath];

In the delegate method I have:

gracenoteResponseItem = [result bestResponse];
NSLog("%@", [gracenoteResponseItem trackLinkData]);

回答1:


Some tracks may not have link data available. Also if you are doing a local lookup then you will have to set this config option:

[publicProperties setObject:@“1"forKey:@"content.allowfullresponse"];




回答2:


Unless you have explicitly had your client ID entitled for Link IDs (aka 'external' or '3rd party' IDs), you won't get any in your responses.

By default, Gracenote Open Developer client IDs aren't entitled for any external IDs. You need to coordinate with Gracenote to entitle your client ID to start receiving the desired IDs.



来源:https://stackoverflow.com/questions/21273806/gracenote-api-no-track-link-data

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!