Sending an email with +2 priority and CR=600 (+i=84+s=61+v=3+pr=2+cr=600@pushsafer.com). My IOS app is alerting every 10 seconds rather than the 10 minute increments specified.
12596136 > 34051
Any ideas? Thanks!
CR-Confirm delay time not working
- admin
- Site Admin
- Posts: 1006
- Joined: 1. Dec 2014, 12:41
- Location: Germany
Re: CR-Confirm delay time not working
it seems you send the mail to your alias mail address with cr=60
Aliases overwrites the transmitted values!
So edit your alias to 600 or send the mail to your main pushsafer mail address!
Kevin
Aliases overwrites the transmitted values!
So edit your alias to 600 or send the mail to your main pushsafer mail address!
Kevin
Pushsafer DE: Dir gefällt Service und Support! Dann freuen wir uns auf deine Bewertung!
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Re: CR-Confirm delay time not working
Hey Kevin! Thanks for the reply. I checked and I am sending to my primary API key, I even deleted my Alias just to make sure. I also tested using the web interface with the same results. Maybe I am missing something, but I dont know what....
Date Parameter Device d Message ID > Device ID
2021-01-20 14:05:37 34051 >
2021-01-20 14:05:26 34051 >
2021-01-20 14:05:14 34051 >
2021-01-20 14:05:02 a 12642488 > 34051
Date Parameter Device d Message ID > Device ID
2021-01-20 14:05:37 34051 >
2021-01-20 14:05:26 34051 >
2021-01-20 14:05:14 34051 >
2021-01-20 14:05:02 a 12642488 > 34051
- admin
- Site Admin
- Posts: 1006
- Joined: 1. Dec 2014, 12:41
- Location: Germany
Re: CR-Confirm delay time not working
i checked the system and all works like it should!
Please try this little script to test if cr works correctly!
Copy this code in a html file and open it in a browser of your choice!
Replace [DEVICEID] and [PRIVATEKEY] with your data before!
Kevin
Please try this little script to test if cr works correctly!
Code: Select all
<script>
var xhttp;
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("POST", "https://www.pushsafer.com/api", true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.onreadystatechange = ProcessRequest;
xhttp.send("t=Confirm Test"+
"&m=open pushsafer to confirm message"+
"&d=[DEVICEID]"+
"&k=[PRIVATEKEY]"+
"&i=3"+
"&c=#AaDAA1"+
"&s=61"+
"&v=3"+
"&u="+escape('https://www.pushsafer.com')+
"&ut="+escape('Open Pushsafer')+
"&re="+
"&ex="+
"&pr=2"+
"&cr=600"+
"&a=1"
);
function ProcessRequest() {
document.write('ReadyState: '+xhttp.readyState+'<br>');
document.write('Status: '+xhttp.status+'<br>');
document.write('ResponseText: '+xhttp.responseText+'<br>');
}
</script>
Copy this code in a html file and open it in a browser of your choice!
Replace [DEVICEID] and [PRIVATEKEY] with your data before!
Kevin
Pushsafer DE: Dir gefällt Service und Support! Dann freuen wir uns auf deine Bewertung!
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Re: CR-Confirm delay time not working
Ran the script and had the same result. Using my main private Key.
2021-01-20 15:50:15 34051 >
2021-01-20 15:50:04 34051 >
2021-01-20 15:49:47 34051 >
2021-01-20 15:49:42 34051 12643660 > 34051
2021-01-20 15:47:26 34051 >
2021-01-20 15:47:15 34051 >
2021-01-20 15:47:03 34051 >
2021-01-20 15:46:59 34051 12643625 > 34051
2021-01-20 15:50:15 34051 >
2021-01-20 15:50:04 34051 >
2021-01-20 15:49:47 34051 >
2021-01-20 15:49:42 34051 12643660 > 34051
2021-01-20 15:47:26 34051 >
2021-01-20 15:47:15 34051 >
2021-01-20 15:47:03 34051 >
2021-01-20 15:46:59 34051 12643625 > 34051
- admin
- Site Admin
- Posts: 1006
- Joined: 1. Dec 2014, 12:41
- Location: Germany
Re: CR-Confirm delay time not working
do you have the same trouble when using resend & expire parameter? Please try the script below!
Code: Select all
<script>
var xhttp;
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("POST", "https://www.pushsafer.com/api", true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.onreadystatechange = ProcessRequest;
xhttp.send("t=Confirm Test"+
"&m=open pushsafer to confirm message"+
"&d=[DEVICEID]"+
"&k=[PRIVATEKEY]"+
"&i=3"+
"&c=#AaDAA1"+
"&s=61"+
"&v=3"+
"&u="+escape('https://www.pushsafer.com')+
"&ut="+escape('Open Pushsafer')+
"&re=60"+
"&ex=600"+
"&pr=2"+
"&cr="+
"&a=1"
);
function ProcessRequest() {
document.write('ReadyState: '+xhttp.readyState+'<br>');
document.write('Status: '+xhttp.status+'<br>');
document.write('ResponseText: '+xhttp.responseText+'<br>');
}
</script>
Pushsafer DE: Dir gefällt Service und Support! Dann freuen wir uns auf deine Bewertung!
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Re: CR-Confirm delay time not working
12646543:34051
When I run the second script, I only receive a single alert with no retries
When I run the second script, I only receive a single alert with no retries
- admin
- Site Admin
- Posts: 1006
- Joined: 1. Dec 2014, 12:41
- Location: Germany
Re: CR-Confirm delay time not working
Hello again,
after a little sleep i found the issue (Time zone conversion) and fixed it!
Please try again!
Thanks for your help, i credited some api calls to your account.
Kevin
after a little sleep i found the issue (Time zone conversion) and fixed it!
Please try again!
Thanks for your help, i credited some api calls to your account.
Kevin
Pushsafer DE: Dir gefällt Service und Support! Dann freuen wir uns auf deine Bewertung!
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Re: CR-Confirm delay time not working
Ich möchte mich recht herzlich bedanken.
Everything seems to be working as expected. This is by far the best notification app I have ever used and I am very pleased!
Everything seems to be working as expected. This is by far the best notification app I have ever used and I am very pleased!
- admin
- Site Admin
- Posts: 1006
- Joined: 1. Dec 2014, 12:41
- Location: Germany
Re: CR-Confirm delay time not working
great to hear that all works like it should!
You like Pushsafer Service and Support - please leave a little review on the appstore.
Thanks Kevin
You like Pushsafer Service and Support - please leave a little review on the appstore.
Thanks Kevin
Pushsafer DE: Dir gefällt Service und Support! Dann freuen wir uns auf deine Bewertung!
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Pushsafer EN: You like Service and Support! Then we look forward to your review!
Pushsafer.com Website - iOS - Android - Windows 10
Who is online
Users browsing this forum: Google [Bot] and 45 guests