docs/api.rst: update_status now reflects the code
authorSami Laine <laine.j.sami@gmail.com>
Thu, 28 Feb 2019 13:48:33 +0000 (15:48 +0200)
committerSami Laine <laine.j.sami@gmail.com>
Thu, 28 Feb 2019 13:48:33 +0000 (15:48 +0200)
docs/api.rst

index de4de89431b48c08788ebd664059d47ba3e6e4b0..5d520e70ad7d71da028f5f64ae106c7d67db96ff 100644 (file)
@@ -107,18 +107,21 @@ Status methods
    :rtype: :class:`Status` object
 
 
-.. method:: API.update_status(status, [in_reply_to_status_id], [auto_populate_reply_metadata], [lat], [long], [source], [place_id])
+.. method:: API.update_status(status, [in_reply_to_status_id], [in_reply_to_status_id_str], [auto_populate_reply_metadata], [lat], [long], [source], [place_id], [display_coordinates], [media_ids])
 
    Update the authenticated user's status. Statuses that are duplicates
    or too long will be silently ignored.
 
    :param status: The text of your status update.
    :param in_reply_to_status_id: The ID of an existing status that the update is in reply to.
+   :param in_reply_to_status_id_str: The ID of an existing status that the update is in reply to (as string).
    :param auto_populate_reply_metadata: Whether to automatically include the @mentions in the status metadata.
    :param lat: The location's latitude that this tweet refers to.
    :param long: The location's longitude that this tweet refers to.
    :param source: Source of the update. Only supported by Identi.ca. Twitter ignores this parameter.
    :param place_id: Twitter ID of location which is listed in the Tweet if geolocation is enabled for the user.
+   :param display_coordinates: Whether or not to put a pin on the exact coordinates a Tweet has been sent from.
+   :param media_ids: A comma-delimited list of media_ids to associate with the Tweet.
    :rtype: :class:`Status` object