How to get ACRID via ACRCloud API knowing the ISRC? - acrcloud

According to ACRCloud, they provide the ability to get songs metadata and links: https://console.acrcloud.com/metadata-links
So, knowing the ACRID, for example, we can find the ISRC via their Metadata API: https://docs.acrcloud.com/metadata/music
The question is: How to get ACRID if we know the ISRC?
Is it possible to do with help of ACRCloud API? Or what other method ACRCloud can provide? I couldn't find anything except the actual audio recognition.

You can't get acrid with this API, you can only get it with the audio recognition, why do you need acrid?

Related

Google Classroom API with Swift

I am developing an education-related app and I am planning on integrating the Google Classroom API to import information about the student's classes and assignments. I already have Google Sign-In working, but I do not know where to go now. I cannot find any documentation regarding using the Classroom API with Swift. If anyone can give me some pointers on how to set this up, it would be much appreciated!
It doesn't look like there is a library to use Classroom in swift. You are going to have to write your own code to hit the API and consume the JSON. I would use something like alamofire to make the network requests for the JSON. Then use codables to parse the JSON. The google documentation is going to be your friend to learn how to hit the API. If you don't know what an API is this youtube video should give a nice overview. If it still doesn't make sense, keep researching REST API's.
Best of Luck!

Record Label Information through the API

I was thinking about playing with the Beats API and I was really hoping to sort music by record label. I'm not seeing anything for labels in the documentation. Does anyone know where that info might be stored in the API?
It's not available through the API.

SoundCloud API using Soundmanager2 for streaming - reporting

I m currently using SC.stream (soundmanager2) on my own player to deliver track from my Website.
My question regards the Reporting. Is Soundcloud API
i m wondering what type of information soundcloud delivers in terms of music listening, number of plays. Abandoned sessions. Full listening and so on. Based on my account.
Best Regards
Xavier
If you're wondering about what metadata you can get from the SoundCloud API, the answer is quite a bit. The SC.Stream only does what is neccesary to get the underlying SoundManager2 instance to play, but if you GET track information specifically, you can get a ton of information.
See the API documentation here.

Is there a way to show all the App Store products from a company?

I tried SKStoreProductViewController but it seems it can only show one known products.I looked through the document of Search API and can't find a way to do this either.
Of course, I can do this by establishing my own database and put it in my server. But it would be better if I can do it in Apple's own way.Or is there a way to get the RSS feed for this?
Does anybody have any suggestions? Thanks
The Search API can help you do this - you just need to know the "artitstId" for the company.
Try this:
Lookup the "artistId" for a specific developer, I pulled it by looking up a single product by that artist.
http://itunes.apple.com/us/lookup?id=533451786
Now use the lookup API for that specific "artistId" and make sure to ask for the entity you want returned.
http://itunes.apple.com/us/lookup?id=298910979&entity=software,iPadSoftware,macSoftware
You can do the same for a Music artist as well. Suppose you want all albums by Adele.
http://itunes.apple.com/us/lookup?id=262836961&entity=album

What's the best way to get latest tweets in iPhone(SDK, 3rd party libs, etc)?

I need to display a list of latest tweets in my iPhone app, and wondering what is the best way to do this, is there any SDK or existing projects doing this? I know about ShareKit, but it seems to be a method for sharing with standard UI, and no way to use it as a getter for latest tweets.
Thanks!
If you only need to get publicly available data, then Twitter has a pretty straight-forward HTTP API that outputs JSON.
For example, to get a user's tweets: http://dev.twitter.com/doc/get/statuses/public_timeline
You can easily use it by utilizing available library for JSON parsing (e.g. JSONKit) and HTTP client (e.g. ASIHTTPRequest, or NSData's + dataWithContentsOfURL).
U see the following example.you will get some idea
http://mobile.tutsplus.com/tutorials/iphone/twitter-api-iphone/
There is also a third way, which is using http://three20.info/, that also implements main Twitter methods, but since all that you want is to retrieve public info I would stick with ASIHTTPRequest, as Barum Rho recommended. Easier and quicker.
Just to let you know more ways :)