The SLRequest object encapsulates the properties of an HTTP request, providing a convenient template for you to make requests. You send a request to a social networking service to perform some operation on behalf of the user or to retrieve user information.
SDKs
- iOS 6.0+
- macOS 10.8+
Framework
- Social
Declaration
class SLRequest : NSObject
Overview
HTTP requests have these common components: an HTTP request method (GET, POST, PUT, or DELETE), a URL identifying the operation to perform, a set of query parameters, and an optional multipart POST body containing additional data. The values for these properties depend on the request you are sending and the target service provider. Refer to each supported social networking site’s documentation for possible values. Links to documentation are provided in Table 1.
Use the init(for method to initialize a newly created SLRequest object passing the required property values. Use the add to optionally specify a multipart POST body. After you create your request, use the perform(handler:) method to send the request, specifying the handler to call when the request is done.
If you already have a sending mechanism, you can use the prepared method to create the request that you send using an NSURLConnection object. If the request requires user authorization, set the account property to an ACAccount object.
Social Services Individual Documentation Sites
Sina Weibo | |
Important
For Sina Weibo integration, users must have the Chinese keyboard enabled. Users can enable this keyboard in Settings > General > Keyboard. If a Chinese keyboard is not enabled, users won’t be prompted to sign in to their Sina Weibo account.