From 5b89c2d504edcfe5cea32107c1856de0a3fc5efc Mon Sep 17 00:00:00 2001 From: Kacper Ziubryniewicz Date: Sun, 19 Aug 2018 15:25:02 +0200 Subject: [PATCH] utils - Event to Plan --- fbchat/utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fbchat/utils.py b/fbchat/utils.py index 15b5c3c..d03288e 100644 --- a/fbchat/utils.py +++ b/fbchat/utils.py @@ -125,10 +125,10 @@ class ReqUrl(object): TYPING = "https://www.facebook.com/ajax/messaging/typ.php" GRAPHQL = "https://www.facebook.com/api/graphqlbatch/" ATTACHMENT_PHOTO = "https://www.facebook.com/mercury/attachments/photo/" - EVENT_REMINDER = "https://www.facebook.com/ajax/eventreminder/create" - EVENT_INFO = "https://www.facebook.com/ajax/eventreminder" - EVENT_CHANGE = "https://www.facebook.com/ajax/eventreminder/submit" - EVENT_PARTICIPATION = "https://www.facebook.com/ajax/eventreminder/rsvp" + PLAN_CREATE = "https://www.facebook.com/ajax/eventreminder/create" + PLAN_INFO = "https://www.facebook.com/ajax/eventreminder" + PLAN_CHANGE = "https://www.facebook.com/ajax/eventreminder/submit" + PLAN_PARTICIPATION = "https://www.facebook.com/ajax/eventreminder/rsvp" MODERN_SETTINGS_MENU = "https://www.facebook.com/bluebar/modern_settings_menu/" REMOVE_FRIEND = "https://m.facebook.com/a/removefriend.php" BLOCK_USER = "https://www.facebook.com/messaging/block_messages/?dpr=1"