-
-
Notifications
You must be signed in to change notification settings - Fork 442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parse Platform #208
Comments
Thanks for creating this suggestion. I had a look here and it looks like this just wraps Apple (APNS) and Android (FCM. So it's not just as simple and passing in a The security keys alone needed to be generated (and attached to the Apprise URL) would make it rather tidious and un-useable.. However the other ticket you created looks like it should be do-able. So thank you for sharing that! Before I close this ticket off (for Parse Platform), do you agree or disagree with my comments above? Perhaps I'm overlooking something and it's much easier then I think? Chris |
In all honesty, I'm not that familiar with either platforms, but they were mentionned in an f-droid/joplin discussion. @dplewis probably has a better idea. |
Sorry for the late reply. You are correct, we use a wrapper around both services. This allows us to use a title, alert, and deviceToken or query to send push notifications. I'm not familiar with apprise to offer more feedback. I am interested however. We could turn the following into a URL
You can view our adapter here |
Thanks for your feedback; i guess i'll need to investigate more 🙂 . Your adapter/application looks great. Apprise has it's limitations as since it's configuration is based on a URL (all inline) Firebase/IOS based ones could get really long. But if you're managing the credentials to these online services within your own (Parse) platform and the only thing you need is the
Under the hood i guess i just need to construct the URL you've identified to add support? Does that sound about right? I don't have a Firebase/IOS hookup, so if i do implement this, would one of you kindly be able to test it out for me? I'd certainly share the instructions as to how. |
I'll gladly help you test this out. Let me know what I can do |
I think I nailed it provided your example URL is all I need to do! 🙂 The Apprise URL looks similar to what was discussed above (altered just slightly).
Note: By default, it will notify both the
There is no need to specify So basically to test this out, you kind of need to install the Apprise package. But you could always do it in a mock environment: # clone repo
git clone git@github.com:caronc/apprise.git
# Change into it:
cd apprise
# Change to the branch
git checkout 208-parse-platform-support
# Install Virtual Environment (so you don't need to hurt your global environment)
python -m venv .
source ./bin/activate
# Now you should be able to safely install Apprise (it will just go into the very
# virtual environment you prepared)
pip install -r requirements
python setup.py install At this point you can use configuration files to make life easy, or just test it right from the command line. With respect to the example shared above, you'd just write: apprise -t 'Test Title' -b 'Test Body' \
parsep://your_app_id:your_master_key@your_server_address |
I just wanted to ping this ticket to see if anyone could test this for me (that already has a Parse Platform setup); instructions are in my previous comments. If all works, then I'll merge this into the master to be pushed with next major release. |
📢 What is the name of the service?
Parse Platform
🔗 Provide some details about the service that can help with it's development.
The text was updated successfully, but these errors were encountered: