|
|
@ -635,9 +635,9 @@ class SyncWebhook(BaseWebhook): |
|
|
|
|
|
|
|
Returns |
|
|
|
-------- |
|
|
|
:class:`Webhook` |
|
|
|
A partial :class:`Webhook`. |
|
|
|
A partial webhook is just a webhook object with an ID and a token. |
|
|
|
:class:`SyncWebhook` |
|
|
|
A partial :class:`SyncWebhook`. |
|
|
|
A partial :class:`SyncWebhook` is just a :class:`SyncWebhook` object with an ID and a token. |
|
|
|
""" |
|
|
|
data: WebhookPayload = { |
|
|
|
'id': id, |
|
|
@ -677,9 +677,9 @@ class SyncWebhook(BaseWebhook): |
|
|
|
|
|
|
|
Returns |
|
|
|
-------- |
|
|
|
:class:`Webhook` |
|
|
|
A partial :class:`Webhook`. |
|
|
|
A partial webhook is just a webhook object with an ID and a token. |
|
|
|
:class:`SyncWebhook` |
|
|
|
A partial :class:`SyncWebhook`. |
|
|
|
A partial :class:`SyncWebhook` is just a :class:`SyncWebhook` object with an ID and a token. |
|
|
|
""" |
|
|
|
m = re.search(r'discord(?:app)?\.com/api/webhooks/(?P<id>[0-9]{17,20})/(?P<token>[A-Za-z0-9\.\-\_]{60,68})', url) |
|
|
|
if m is None: |
|
|
|