Skip to content

Commit 2eb382f

Browse files
tvOS authorization support.
– Implements Google's OAuth 2.0 for TV and Limited Input Device Applications flow, https://developers.google.com/identity/protocols/OAuth2ForDevices – This is the same authorization flow used by the YouTube TV app (https://www.youtube.com/tv). – The flow is based on, but not fully compatible with the IETF draft protocol specification https://tools.ietf.org/html/draft-ietf-oauth-device-flow
1 parent 2efde74 commit 2eb382f

File tree

40 files changed

+2155
-4
lines changed

40 files changed

+2155
-4
lines changed

Example-tvOS/.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Build generated
2+
build/
3+
DerivedData/
4+
5+
## Various settings
6+
*.pbxuser
7+
!default.pbxuser
8+
*.mode1v3
9+
!default.mode1v3
10+
*.mode2v3
11+
!default.mode2v3
12+
*.perspectivev3
13+
!default.perspectivev3
14+
xcuserdata/
15+
16+
## Other
17+
*.moved-aside
18+
*.xcuserstate
19+
20+
# Pods are ignored in the samples as all Pods & their dependencies are either
21+
# development Pods (this repo) or sourced from repos in the same organization.
22+
# Generally we recommend versioning Pods, see the pros & cons here:
23+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
24+
Pods

0 commit comments

Comments
 (0)