I'm looking for an iPhone/Mobile app to to aggregate alerts - notifications

I am looking to find an app like pushover, which I can aggregate multiple alerts into. I want to be able to via API add and remove alerts. Badges should be shown for alerts pending, I would like to be able to add and remove alerts via api which would update badge accordingly. If i open app I would like to have the ability to click on alert and it open url set via api. Wondering if this exists?

Yes, this exists. Spontit, I believe, does what you're looking for.
Here is the web-app and the API docs.

Related

Show notification on a website on only the first visit

When I update my website I would like the users to get a notification, via a bar on the top of the page, stating what the update has been. How do I make it so that when the user goes back to the website that same notification doesn't pop up every time, only the first time?
I'm using Nuxt, or Vue.js. I was trying to get vue-toast to do this but I'm not sure how, but I'll use anything that works. I'm guessing I could use local storage somehow, but I would have more notifications that would need to show about once a week or so.

Is it possible to exclude links from tracking

I am building an app which is utilizing Sendgrid Marketing Email API, with the purpose of sending newsletters. It has a number of links to articles, but also banner ads and other service links. We would obviously like to keep tracking of article links, but exclude other links from affecting the click rate. Is it possible in any way to mark links which we don't wish to add to tracking?
Minor thread necromancy to let anyone who gets here via google know that they added an attribute to disable link tracking.
https://sendgrid.com/docs/Classroom/Track/Clicks/click_tracking_html_best_practices.html
Click tracking can be turned off for individual links by including the clicktracking=off attribute inside the anchor of an HTML link before the href. For example, <a clicktracking=off href="http://example.com">link text</a> would not be tracked.
The current click tracking application for SendGrid overwrites all links and there isn't, at this time, a way to customise this so only certain links are tracked.
One alternative would be to turn off the Click Tracking app in your SendGrid dashboard, but switch on the Google Analytics app (under Apps > Show Disabled Apps > Google Analytics).
With this app switched on, you can then build out custom links that you want to track using the Google Analytics URL Builder.
This would stop SendGrid rewriting all the URLs, and allow you to specify URLs that you want to track. However it would mean you will lose click event data in your SendGrid analytics, and via the Event Webhook, but the important data that you want to track for your campaigns would still be stored in Google Analytics.
You can also disable Sendgrid's tracking using the api. To do this you set some email headers.
Example X-SMTPAPI header value:
{
"filters" : {
"clicktrack" : {
"settings" : {
"enable" : 0,
"enable_text" : false
}
}
}
}
This works for plain text emails.
See: https://sendgrid.com/docs/for-developers/sending-email/smtp-filters/#filter-clicktrack
1.To disable tracking for a specific link add clicktracking=off before href
eg: <a clicktracking=off href="http://destination-domain.com">text</a>
2.To disable sendgrid link tracking for all mails
Goto Settings -> Tracking -> Click Tracking -> turn off link tracking

How to block a user from my instagram webfeed?

I have a joomla website, and use a module to get a feed from Instagram based on a tag (#). But i have a user that keeps taggin with this tag. Is it possible to blog the user so that his images do not show on my web page even if he uses the tag that i use for my feed? I have tryed to block the user in Instagram, but his images still comes up in my feed..
You will have to write your own custom module to get feed and filter manually by blocking the user_id
You might have to delete your comments or remove tags because they will not automatically be removed even after blocking that user.
source: http://viralkick.com/blog/block-someone-instagram/

Set Request Dialog multi-friend selector to show only users 21+

I have a request dialog within a page tab app. I'm hoping not to have to ask the user for any permissions. I'd like the user to be able to send a request to friends (the request dialog is working fine), but I want only friends that are 21+ to come up in the users multi-friend selector. Is this possible?
The Requests dialog has a filters parameter you can use to define which users do/do not appear in the requests dialog.
You can also request the friends_birthday permission from your users and filter out the friends who do not have a visible birthday or where it is <21 years old.
If users absolutely must not see the app if they're under 21, just restrict your entire app via the API or app settings so those users don't see the app, its content, or requests from it.
You may use custom multi-friend selector for this , just like : mikebrevoort's plugin, and do a check on age and send the request.

The ted.com twitter widget?

On all the videos on ted, there is a widget thing with an inputfield that says tweet this (we'll add the url later) you put stuff in a box, it get's a tiny-url and get's pushed to facebook.
I'm trying to figure out what it's called. Does anyone have a clue?
example:
http://www.ted.com/talks/dan_phillips_creative_houses_from_reclaimed_stuff.html
Looks like they are using the service provided by AddThis. Looking at their site, they offer some stock sharing links, but also have an API for creating more advanced ones.