Questions tagged [subscription]

An arrangement to receive something, typically a publication, regularly.

An arrangement to receive something, typically a publication, regularly.

2251 questions
2
votes
0 answers

Google Play Subscriptions any way to determine how many devices a user has the app on?

I am getting ready to implement a subscription app for the first time, and if i am reading the documentation properly, once subscribed the user will have access to the app under the standard model for all devices that are registered with the same…
2
votes
4 answers

How do I include report parameters in an SSRS subscription's subject line?

I have a report that displays data for a specified date. The report runs daily and emails a copy to the recipients. The default subject for the email is "@ReportName was executed at @ExecutionTime." Rather than include the execution date, I want to…
Michael Venable
  • 5,011
  • 3
  • 23
  • 20
2
votes
2 answers

Create Subscription programmatically in Reporting Services

I need to create a subscription for my SSRS reports in an asp.net page. I can show the reports in a reportviewer using Reporting.WebForms. SSRS is on the another computer in my network. For reportviewer, I use "admin" and "pass" for credentials…
Beytan Kurt
  • 2,203
  • 4
  • 34
  • 57
2
votes
2 answers

Overload subscription on observable

Is it possible to overload a pre-existing subscription on an observable and if so how? this.myObservable = ko.observable(); this.myObservable.subscribe(function(value){ /* stuff worth subscribing for */ }); /* stuff going on */ /* ... */ /* more…
KodeKreachor
  • 8,852
  • 10
  • 47
  • 64
2
votes
2 answers

Subscription model with generics - implement multiple generic interfaces

So I tried to make a subscription model with generics.. it looked nice, but now I'm running into some issues. Receiver public interface Receiver { public void receive(E event); } Subscription registry public class ClientRegistry { …
MightyPork
  • 18,270
  • 10
  • 79
  • 133
2
votes
3 answers

python pubsub subscribe to more than one topic

This may seem a bit general, but the problem is quite simple actually. Is it possible to subscribe to a subset of topics using the pubsub module. Let me briefly explain what I would like to accomplish. In a wxpython project I want to change the text…
user3176500
  • 389
  • 2
  • 6
  • 15
2
votes
0 answers

No method error when setting up Koudoku w/ Rails

I am getting this error when I submit a card with test info from the _card partial. The error is being generated within CGI.escape, here's the code: URL-encode a string. # url_encoded_string = CGI::escape("'Stop!' said Fred") # # =>…
jackerman09
  • 2,492
  • 5
  • 29
  • 46
2
votes
1 answer

PayPal solution for SaaS subscriptions?

My web app requires subscriptions. I'm looking into payment solutions that best work with SaaS scenarios. I see that PayPal has three options: Standard, Advanced and Pro. I want my app to make API calls to PayPal to check payment status. Which one…
Sam
  • 26,817
  • 58
  • 206
  • 383
2
votes
0 answers

Is anyone else NOT getting the purchaseToken every time for Android in-app-billing Subscription?

We have an Android subscription product. We are only getting the purchaseToken on new subscriptions 50% of the time. We need this token from Google to track subscription renewals from the server. Is anyone else experiencing this problem? We have…
PrivusGuru
  • 273
  • 1
  • 2
  • 12
2
votes
1 answer

Meteor login and logout are slow

My subscriptions download a lot of data for current user. I'm OK if these subscriptions are loaded in whatever order and time they please. When the user is already logged in, subscriptions load non-blockingly; that is, I can detect that…
2
votes
1 answer

Android InApp purchase verification failing using Google API

I have a problem with the Google Play Android Developer API. I need to verify the purchase of Managed Product and Subscription Type purchases and grant access to content on a server when verified. I use Oauth to generate an access_token to…
user3188564
  • 41
  • 1
  • 5
2
votes
1 answer

Bloomberg Java API - bond yield in real time subscription

Goal: I use Bloomberg Java API's subscription service to monitor bond prices in real time (subscribing to ASK/BID real time fields). However in the RESPONSE messages, bloomberg does not provide the associated yield for the given price. I need a way…
WillZ
  • 3,775
  • 5
  • 30
  • 38
2
votes
2 answers

iPhone In App purchase subscriptions auto renew?

I am looking for a subscription solution in my app where the user can use the app for free and then to be able to sync with a website he/she pays a monthly subscription fee. Right now I'm using PayPal for this but I wanted to include this into the…
Martin
  • 1,675
  • 11
  • 34
  • 46
2
votes
1 answer

DELETE Realtime Subscriptions in Instagram

The endpoint for deleting realtime subscriptions seems to have stopped working. I'm performing a cURL 'POST' with a 'DELETE' custom request and receiving the following JSON response from Instagram: {"meta":{"code":200},"data":null} However, the…
2
votes
1 answer

Instagram Realtime API tag subscriptions die after 30 callbacks?

I'm having an issue where tag subscriptions we're creating are only lasting for about 30 callbacks We're using PHP and cURL to talk to the Realtime API Our callback.php merely logs the POST request received to a file so we can track how many times…