About iTunes Store authorization and deauthorization


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS About iTunes Store authorization and deauthorization
# 1  
Old 10-31-2008
About iTunes Store authorization and deauthorization

Deauthorizing a computer allows you to manage which computers can play music, videos, audiobooks, or other content purchased from the iTunes Store. Authorization helps protect the copyrights on the content you buy. You can use your digital rights management (DRM)-protected music purchases1 from the iTunes Store on up to five different computers (these can be any mix of Macintosh or Windows-compatible computers). When you play an item you've purchased, your computer is "authorized" to play content purchased using your Apple Account. Note: Songs you encode in AAC format from a source other than the iTunes Store, such as your own audio CDs, and songs from iTunes Plus downloads do not need to be authorized.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Catalyst::Authentication::Store::Null(3pm)		User Contributed Perl Documentation		Catalyst::Authentication::Store::Null(3pm)

NAME
Catalyst::Authentication::Store::Null - Null authentication store SYNOPSIS
use Catalyst qw( Authentication ); __PACKAGE__->config( 'Plugin::Authentication' => { default_realm => 'remote', realms => { remote => { credential => { class => 'TypeKey', key_url => 'http://example.com/regkeys.txt', }, store => { class => 'Null', } } } }); DESCRIPTION
The Null store is a transparent store where any supplied user data is accepted. This is mainly useful for remotely authenticating credentials (e.g. TypeKey, OpenID) which may not be tied to any local storage. It also helps facilitate integration with the Session plugin. METHODS
new( ) Creates a new instance of the store. for_session( ) Returns the user object passed to the method. from_session( ) Returns the user object passed to the method. find_user( ) Since this store isn't tied to any real set of users, this method just returns the user info bless as a Catalyst::Authentication::User::Hash object. user_supports( ) Delegates to Catalyst::Authentication::User::Hash. perl v5.14.2 2012-04-14 Catalyst::Authentication::Store::Null(3pm)