Skip to content

Commit b2ab7a8

Browse files
kenneth-laube-hase
authored andcommitted
Update docs (#82)
* Update issue_template links * Update links
1 parent 4371dae commit b2ab7a8

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Do this before creating an issue
22

3-
- Check the [FAQ](https://github.com/line/line-bot-faq) for LINE bots
4-
- 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.
3+
- 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
4+
- 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.
55

66
## When creating an issue
77

README.rst

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ About the LINE Messaging API
1010

1111
See the official API documentation for more information.
1212

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

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

1717
Install
1818
-------
@@ -97,7 +97,7 @@ reply\_message(self, reply\_token, messages, timeout=None)
9797
Respond to events from users, groups, and rooms. You can get a
9898
reply\_token from a webhook event object.
9999

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

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

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

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

113113
.. code:: python
114114
@@ -119,7 +119,7 @@ multicast(self, to, messages, timeout=None)
119119

120120
Send messages to multiple users at any time.
121121

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

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

131131
Get user profile information.
132132

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

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

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

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

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

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

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

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

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

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

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

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

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

225225
Leave a group.
226226

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

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

236236
Leave a room.
237237

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

240240
.. code:: python
241241
@@ -246,7 +246,7 @@ https://devdocs.line.me/en/#leave
246246

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

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

251251
.. code:: python
252252
@@ -257,12 +257,12 @@ https://devdocs.line.me/en/#error-response
257257
print(e.error.message)
258258
print(e.error.details)
259259
260-
Send message object
260+
Message objects
261261
~~~~~~~~~~~~~~~~~~~
262262

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

265-
These following classes are found in the ``linebot.models`` package.
265+
The following classes are found in the ``linebot.models`` package.
266266

267267
TextSendMessage
268268
^^^^^^^^^^^^^^^
@@ -568,7 +568,7 @@ If there is no handler for an event, this default handler method is called.
568568
Webhook event object
569569
~~~~~~~~~~~~~~~~~~~~
570570

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

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

0 commit comments

Comments
 (0)