public
Description: Mac OS X Last.fm scrobbler for iTunes and iPod
Homepage: http://www.scrobblepod.com
Clone URL: git://github.com/scrobblepod/scrobblepod.git
scrobblepod / BGLastFmAuthenticationManager.h
100644 35 lines (25 sloc) 0.797 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// BGLastFmAuthenticationManager.h
// ApiHubTester
//
// Created by Ben Gummer on 18/07/08.
// Copyright 2008 Ben Gummer. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
@protocol AuthDelegate
 
-(void)newWebServiceSessionKeyAcquired;
-(void)newSubmissionSessionKeyAcquired;
 
@end
 
 
@interface BGLastFmAuthenticationManager : NSObject {
id delegate;
}
 
@property (readonly) NSString *webServiceSessionKey;
@property (readonly) NSString *submissionSessionKey;
@property (readonly) NSString *username;
@property (readonly) NSString *nowPlayingSubmissionURL;
@property (readonly) NSString *scrobbleSubmissionURL;
@property (assign) id delegate;
 
-(id)initWithDelegate:(id)sender;
-(void)beginNewWebServiceSessionProcedure;
-(void)fetchNewSubmissionSessionKeyUsingWebServiceSessionKey;
 
@end