- (NSDictionary *)getReplyForMode:(NSString *)mode parameters:(NSDictionary *)parameters;
This method takes a mode and a set of variable parameters, encodes them as an HTTP POST request, sends them to the server, parses the reply, and returns it as a dictionary. If a network error occurs, nil is returned. This method is only concerned with network transport. If the LiveJournal server returns an error, this method will not detect it. You should use the corresponding method in LJAccount instead.
- (NSURL *)url;
- (BOOL)isUsingFastServers;
Result: The URL of a the proxy server, or nil if proxy is disabled.- (NSURL *)proxyURL;
- (void)setProxyURL:(NSURL *)url;
To enable proxy support, call this method with the URL of the proxy server. To disable proxy support, set proxyHostname to nil.
- (void)setURL:(NSURL *)url;
Name Description url The URL of the host to connect to.
(Last Updated 2/17/2003)