Skip to content

Commit

Permalink
Update docs (#82)
Browse files Browse the repository at this point in the history
* Update issue_template links

* Update links
  • Loading branch information
kenneth-lau authored and be-hase committed Jan 10, 2018
1 parent 4371dae commit b2ab7a8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE.md
@@ -1,7 +1,7 @@
## Do this before creating an issue

- Check the [FAQ](https://github.com/line/line-bot-faq) for LINE bots
- Make sure your issue is **related to** the LINE Bot SDK. For general questions or issues about LINE bots, create an issue on the [FAQ](https://github.com/line/line-bot-faq) repository. Note that we don't provide technical support.
- Check our [developer documentation](https://developers.line.me/en/docs/) and [FAQ](https://developers.line.me/en/faq/messaging-api/) page for more information on LINE bots and the Messaging API
- Make sure your issue is **related to** the LINE Bot SDK. For general questions or issues about LINE bots, create an issue on the [LINE Platform feedback](https://github.com/line/line-platform-feedback) repository. Note that we don't provide technical support.

## When creating an issue

Expand Down
36 changes: 18 additions & 18 deletions README.rst
Expand Up @@ -10,9 +10,9 @@ About the LINE Messaging API

See the official API documentation for more information.

English: https://devdocs.line.me/en/
English: https://developers.line.me/en/docs/messaging-api/reference/

Japanese: https://devdocs.line.me/ja/
Japanese: https://developers.line.me/ja/docs/messaging-api/reference/

Install
-------

This comment has been minimized.

Expand Down Expand Up @@ -97,7 +97,7 @@ reply\_message(self, reply\_token, messages, timeout=None)
Respond to events from users, groups, and rooms. You can get a
reply\_token from a webhook event object.

https://devdocs.line.me/en/#reply-message
https://developers.line.me/en/docs/messaging-api/reference/#send-reply-message

.. code:: python
Expand All @@ -108,7 +108,7 @@ push\_message(self, to, messages, timeout=None)

Send messages to users, groups, and rooms at any time.

https://devdocs.line.me/en/#push-message
https://developers.line.me/en/docs/messaging-api/reference/#send-push-message

.. code:: python
Expand All @@ -119,7 +119,7 @@ multicast(self, to, messages, timeout=None)

Send messages to multiple users at any time.

https://devdocs.line.me/en/#multicast
https://developers.line.me/en/docs/messaging-api/reference/#send-multicast-messages

.. code:: python
Expand All @@ -130,7 +130,7 @@ get\_profile(self, user\_id, timeout=None)

Get user profile information.

https://devdocs.line.me/en/#bot-api-get-profile
https://developers.line.me/en/docs/messaging-api/reference/#get-profile

.. code:: python
Expand All @@ -148,7 +148,7 @@ Gets the user profile of a member of a group that the bot is in. This can be
the user ID of a user who has not added the bot as a friend or has blocked
the bot.

https://devdocs.line.me/en/#get-group-room-member-profile
https://developers.line.me/en/docs/messaging-api/reference/#get-group-member-profile

.. code:: python
Expand All @@ -164,7 +164,7 @@ get\_room\_member\_profile(self, room\_id, user\_id, timeout=None)
Gets the user profile of a member of a room that the bot is in. This can be the
user ID of a user who has not added the bot as a friend or has blocked the bot.

https://devdocs.line.me/en/#get-group-room-member-profile
https://developers.line.me/en/docs/messaging-api/reference/#get-room-member-profile

.. code:: python
Expand All @@ -180,7 +180,7 @@ get\_group\_member\_ids(self, group\_id, start=None, timeout=None)
Gets the user IDs of the members of a group that the bot is in.
This includes the user IDs of users who have not added the bot as a friend or has blocked the bot.

https://devdocs.line.me/en/#get-group-room-member-ids
https://developers.line.me/en/docs/messaging-api/reference/#get-group-member-user-ids

.. code:: python
Expand All @@ -195,7 +195,7 @@ get\_room\_member\_ids(self, room\_id, start=None, timeout=None)
Gets the user IDs of the members of a room that the bot is in.
This includes the user IDs of users who have not added the bot as a friend or has blocked the bot.

https://devdocs.line.me/en/#get-group-room-member-ids
https://developers.line.me/en/docs/messaging-api/reference/#get-room-member-user-ids

.. code:: python
Expand All @@ -209,7 +209,7 @@ get\_message\_content(self, message\_id, timeout=None)

Retrieve image, video, and audio data sent by users.

https://devdocs.line.me/en/#get-content
https://developers.line.me/en/docs/messaging-api/reference/#get-content

.. code:: python
Expand All @@ -224,7 +224,7 @@ leave\_group(self, group\_id, timeout=None)

Leave a group.

https://devdocs.line.me/en/#leave
https://developers.line.me/en/docs/messaging-api/reference/#leave-group

.. code:: python
Expand All @@ -235,7 +235,7 @@ leave\_room(self, room\_id, timeout=None)

Leave a room.

https://devdocs.line.me/en/#leave
https://developers.line.me/en/docs/messaging-api/reference/#leave-room

.. code:: python
Expand All @@ -246,7 +246,7 @@ https://devdocs.line.me/en/#leave

If the LINE API server returns an error, LineBotApi raises LineBotApiError.

https://devdocs.line.me/en/#error-response
https://developers.line.me/en/docs/messaging-api/reference/#error-responses

.. code:: python
Expand All @@ -257,12 +257,12 @@ https://devdocs.line.me/en/#error-response
print(e.error.message)
print(e.error.details)
Send message object
Message objects
~~~~~~~~~~~~~~~~~~~

https://devdocs.line.me/en/#send-message-object
https://developers.line.me/en/docs/messaging-api/reference/#message-objects

These following classes are found in the ``linebot.models`` package.
The following classes are found in the ``linebot.models`` package.

TextSendMessage
^^^^^^^^^^^^^^^
Expand Down Expand Up @@ -568,7 +568,7 @@ If there is no handler for an event, this default handler method is called.
Webhook event object
~~~~~~~~~~~~~~~~~~~~

https://devdocs.line.me/en/#webhooks
https://developers.line.me/en/docs/messaging-api/reference/#webhook-event-objects

The following classes are found in the ``linebot.models`` package.

Expand Down

0 comments on commit b2ab7a8

Please sign in to comment.