| Package | com.swfjunkie.tweetr.oauth |
| Interface | public interface IOAuth |
| Implementors | OAuth |
| Property | Defined by | ||
|---|---|---|---|
| userId : String [read-only]
Get the twitter user_id (retrieval only available after successful user authorization)
| IOAuth | ||
| username : String
Get/Set the twitter screen_name (retrieval only available after successful user authorization)
| IOAuth | ||
| Method | Defined by | ||
|---|---|---|---|
|
getSignedRequest(method:String, url:String, urlVars:URLVariables = null):String
Signs a Request and returns an proper encoded argument string.
| IOAuth | ||
| userId | property |
userId:String [read-only]Get the twitter user_id (retrieval only available after successful user authorization)
Implementation public function get userId():String
| username | property |
username:String [read-write]Get/Set the twitter screen_name (retrieval only available after successful user authorization)
Implementation public function get username():String
public function set username(value:String):void
| getSignedRequest | () | method |
public function getSignedRequest(method:String, url:String, urlVars:URLVariables = null):StringSigns a Request and returns an proper encoded argument string.
Parametersmethod:String — The URLRequest Method used. Valid values are POST and GET
|
|
url:String — The Request URL
|
|
urlVars:URLVariables (default = null) — URLVariables that need to be signed
|
String |