This repository was archived by the owner on Jul 9, 2022. It is now read-only.
Add getLastNotifications Command (#644)#648
Open
ezaca wants to merge 1 commit intoSchmavery:masterfrom
Open
Conversation
This commit includes source, documentation and test of the getLastNotifications command, which makes a request to get a list of last notifications from the current logged profile.
|
Is it possible to get more notifications then? Let's say the last 5 for example. |
Author
|
Hi, @23phy, the "s" in the end is meant to point that it returns a list of notifications. By default, it returns the last 10 notifications, I think it's an arbitrary number. To return older notifications it would be necessary to implement the system of cursors that Facebook uses. If you need last 5, sure it will supply your needs. To use cursors and obtain even older items, it will require little more work. |
|
Good. I thought that 's' was a typo 😂I don't know why I understand that it gets the last notification. Thank you for your work.. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In issue #644 I was discussing a personal need I had. Now I have made a command to fit my needs: it makes a request and gets a list of the last notifications of the currently logged user.
As it is not a Messenger thing, but an FB thing, I don't know if it's expected to be in the official Unofficial Facebook Chat API. I will maintain a fork for a while and use it from that, if you like the function and think it can be somewhat useful, I am opening a pull request.
The initial commit includes source, documentation, and test for the getLastNotification command.
If you are willing to accept the pull request, please review the additions and inform me of any problem related to code, formatting or grammar (English is not my native language).