Click here to Skip to main content
15,903,175 members
Articles / All Topics

OAuth Authentication on tvOS

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
19 Jan 2016CPOL4 min read 8.2K  
OAuth Authentication on tvOS

This article is an entry in our Microsoft Azure IoT Contest. Articles in this section are not required to be full articles so care should be taken when voting.

Recently, I just published an Apple TV (tvOS) App to view photos stored on Microsoft OneDrive.

Image 1

Implementing this on tvOS rather than iOS presented one unique challenge. The OneDrive REST API requires OAuth2 authentication in order to obtain an OAuth token which is then used for all the other calls.

Normally (well based on my limited experience), OAuth within Apps is handled by using a UIWebView along with delegate code that performs the OAuth handshake (image linked from IBM).

Image 2

tvOS does not contain any form of web view, i.e., no UIWebView and no WKWebView (not that it would be that much use due to the lack of hooks). As the actual authentication is performed within the UIWebView by the authenticating 3rd party (Microsoft in this case requiring the user logs in with their Microsoft Account credentials), there's not a lot that can be done without it.

However, both iOS and tvOS are generally logged into using an Apple Id which is also used to login into iCloud and generally for an Apple TV owned by the same person who owns another iOS device, these use the same Apple Id. Therefore, what I did was to write a very simple iOS App that:

  1. Performs the OAuth Authentication handshake
  2. Stores the resulting OAuth token in the iCloud KeyValue Store

Image 3

Image 4

Image 5

Image 6

When written, this is usually synchronized to iCloud very quickly. On the other side, the tvOS app reads the iCloud KeyValue Store checking to see if the OAuth token exists.

Image 7

If it does, then it can continue as per any other App that has successfully performed the OAuth handshake.

Image 8

I believe that iCloud Storage and the process of writing to and reading from iCloud is secure. This is important as following the handshake the OAuth token acts effectively as a password. Each token obtained from Microsoft is valid for one hour so after that, the user needs to perform the authentication from the iOS device again.

It is possible to request an OAuth refresh token which allows a client to update an expired token as long as access to OneDrive for the App has not been revoked. However, I prefer to err on the side of caution at the moment. I also only request read-only access to OneDrive as well.

For this to work, the same user (Apple Id) needs to be logged into both the Apple TV and the iOS device as the same user and additionally be signed into iCloud on these devices. From a programmatic perspective, both Apps need the iCloud capability enabling but only Key-value storage.

Image 9

However, you'll notice that CloudKit has also been enabled. This is so that CKContainer methods can be called. In particular (well only) CKContainer.defaultContainer().accountStatusWithCompletionHandler in order to establish whether the user is currently signed in to iCloud and any changes (signing in & out potentially as a different user) whilst the App is running.

Enabling this automatically creates an Entitlement file (named <AppName>.entitlements) and within it creates Key confusingly called 'iCloud Key-Value Store' with the default value of '$(TeamIdentifierPrefix)$(CFBundleIdentifier)' - this is not the key to access values you store BTW but is just the iCloud KV configuration. This will happen for both the iOS and tvOS Apps.

NOTE: The two collapsed keys are as a result of enabling CloudKit.

Image 10

For both Apps to have access to the same iCloud Key-Value storage, the results of expanding the ''$(TeamIdentifierPrefix)$(CFBundleIdentifier)' macros need to be the same. For my App, I've created a single App that has both an iOS and tvOS component so their CFBundleIdentifier is the same. The TeamIdentifierPrefix is taken from your Developer Apple Id.

The first part of the value has to be $(TeamIdentifierPrefix) as in order to make the KV Storage secure, this value forms part of the signing process. If you replaced the whole value with say 'BOB', then it won't build properly.

Image 11

As such, it's possible for all your Apps (published with the same Apple Id) to share iCloud Key-Value Storage contents.

Reading & writing is very simple. I just use a single Key-Value pair to read, write (& where necessary delete the token. This is accomplished using:

NSUbiquitousKeyValueStore.defaultStore().setDictionary(stuff.asDict(), forKey: "mykey")

to write and:

let stuff = NSUbiquitousKeyValueStore.defaultStore().dictionaryRepresentation["mykey"] as? [String:AnyObject]

to read.

This example reads & writes a dictionary as I needed to set store a set of KV Pairs (a dictionary) as the value of a single KV-pair but fundamental data types can be stored directly too.

When starting the App, according to the docs, it is important to call synchronize method to initiate timely iCloud synchronization.

When the tvOS based Apple TV was first released, there were various articles about how to enable users to login to their accounts for certain apps. These often involved similar configuration requiring the user to use an iOS device to input a string of numbers presented by the tvOS App. However, this solution was usually for Apps that managed their own accounts. This solution is similar in that solves the cumbersome entry problem but also enables the use of browser (UIWebView) based OAuth2 on a device that directly support it.

Image 12

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
United Kingdom United Kingdom
My day job is mostly working in C++ with a bit of C#. I write a fair amount of command line based tools and really wish they could have a GUI front-end to them hence why I spend my spare time working with WPF.

I started a blog few years back but didn't do a lot with it. I've started describing some of the interesting programming things I come across on it. Please take a look.

Comments and Discussions

 
-- There are no messages in this forum --