I am trying to implement FairPlay in my application.
I am able to play an encrypted video using the SDK given by Apple but the problem is the SDK is in Swift but my project is in Objective C.
So i have re-written the code in my project but i am unable to play a video.
Here are the links in am using:
Here are the steps i have followed:
- Added a delegate to the AVURLAsset to call this function shouldWaitForLoadingOfRequestedResource.
- In this function, i am first getting the contents of certificate in NSData
- Then, i am obtaining the asset string and converting it to NSData.
- Then, i am calling this function to create SPC value.
NSData *spc = [loadingRequest streamingContentKeyRequestDataForApp:certificate contentIdentifier:assetId options:nil error:nil];
- The SPC received and Asset ID is then passed to Azure server with application/x-www-form-urlencoded content-type.
- The CKC received is then trimmed to remove and tags and then converted it to Base64String and then called these functions
[dataRequest respondWithData:base64CkcData];
[loadingRequest finishLoading];
Can anyone help me find what am i doing wrong here?
Thanks.
I was having similar troubles to this. I'm assuming you'd started with an obj-c version of https://gist.github.com/fousa/5709fb7c84e5b53dbdae508c9cb4fadc, yes? This code portion seems to work for me, and I am just wondering if this is what you had already.
If this is what you have then perhaps the video is the issue.