Online Documentation - Statistics - FAQ - Plugin Parts (All, Dependencies) - Class hierarchy
New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1
The list of the topics, classes, interfaces, controls, modules, global methods by category, global methods by name, screenshots, licenses and examples.
Platforms to show: All Mac Windows Linux Cross-Platform
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
class | Social | MBS Mac64bit Plugin | 15.3 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
You send a request to a social networking service to perform some operation on behalf of the user or to retrieve user information.
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 requestForServiceType:requestMethod:URL:parameters: method to initialize a newly created SLRequest object passing the required property values. Use the addMultipartData:withName:type: to optionally specify a multipart POST body. After you create your request, use the performRequestWithHandler: 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 preparedURLRequest 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.
Available in OS X v10.8 and later. 64bit only.
Constant | Value | Description |
---|---|---|
SLRequestMethodDELETE | 2 |
One of the request types.
Deletes the specified resource. Available in OS X v10.8 and later. |
SLRequestMethodGET | 0 |
One of the request types.
Requests information from the specified resource. Use a GET request to fetch information from the specified server such as character limits or a user’s timeline. Available in OS X v10.8 and later. |
SLRequestMethodPOST | 1 |
One of the request types.
Submits data to be processed. Use a POST request to submit information to the specified server such as a status update or an image. Available in OS X v10.8 and later. |
SLRequestMethodPUT | 3 |
One of the request types.
Uses a PUT request to submit the data. Available in OS X v10.9 and later. |
This class has no sub classes.
The items on this page are in the following plugins: MBS Mac64bit Plugin.