Questions tagged [subscription]

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

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

2251 questions
3
votes
1 answer

Create a dynamic ICS file that users can subscribe to

We have a website that users login to, and can then book on to courses. These courses and the bookings are stored in our SQL database against the user's UserID. On the course page the user is able to add the course to their Outlook calendar via a…
roxvox
  • 31
  • 5
3
votes
2 answers

MSDN subscription licence and Enterprise Agreements

MSDN subscriptions give a developer access to Visual Studio 2010 and the latest Microsoft platforms for development and testing access. The Microsft MSDN subscription whitepaper says that MSDN licenses obtained thru an "Enterprise Agreement" (where…
Gavin
  • 39
  • 1
  • 2
3
votes
2 answers

How to get TAG value for Azure Subscription with PowerShell

I can assign and view a "tag" value for my various Azure subscriptions in the Azure Portal. However, when I query those subscriptions with PowerShell, I cannot find a property relating to "tags." This seems rather bizzare since "Tags" are listed as…
F.S.
  • 71
  • 1
  • 4
3
votes
0 answers

GraphQL Subscriptions return an empty (null) response

I have an issue with a very simple GRAPHQL server trying to make subscriptions work. Using pubsub to subscribe and publish an event when a user signs in. On signing in, the mutation completes successfully, but the corresponding subscription returns…
3
votes
3 answers

How to perform one async action after another without embedded subscriptions

I would like to perform async actions one after another using rxjs. I know that embedding subscribe in a subscribe is not a good practice and there are some other rxjs operators (flatMap\mergeMap, do etc. using pipe). I need to get the component…
Guy E
  • 1,775
  • 2
  • 27
  • 55
3
votes
3 answers

Apollo Server as Nuxt serverMiddleware

I've managed to have a express + Apollo Backend as a serverMiddleware in Nuxtjs. Everything works fine(auth, cache, datasources, queries, mutations) but now I'm trying to get subscriptions(websockets) running and its giving me a hard time. I tried…
jliehmann
  • 51
  • 6
3
votes
1 answer

Should I check cancellation_date_ms in addition to expires_date_ms for a auto-renewable subscriptions?

I am implementing an auto-renewable subscription in my app. Currently, to check if the user have an active subscription, I examine all the records in latest_receipt_info array from the response JSON returned from the Apple's /verifyReceipt service,…
Dmitry Klochkov
  • 2,484
  • 24
  • 31
3
votes
1 answer

Do subscription promo codes work with the subscription test flow?

I'm trying to test promo codes for a subscription in my app. The promo-code is for a 30 day free trial. I'm currently testing my subscriptions with a test user and it follows the 3 min free trial, 5 min for a month and all that according to this…
Razvan S.
  • 753
  • 7
  • 21
3
votes
1 answer

Google play subscription and free trial for mobile app automatically cancels/ends

We have a new application recently released on Google Play. The initial group of testers subscribed for a free 60-day trial. Over the past month, their subscription has been automatically removed/ended multiple times making them resubscribe. We…
Canaan
  • 33
  • 4
3
votes
1 answer

Can iOS app subscription options be hidden from users?

My iOS app currently offers an auto-renewable subscription A. I want to add a second subscription option B with a discounted rate. Option B shall only be available for users who bought a certain upgrade X via in-app purchase in the past (that in-app…
Theo
  • 3,826
  • 30
  • 59
3
votes
1 answer

Difference in the payload for CANCEL notification for Upgrade and Customer support cancellation for Apple subscription notification

Apple sends Server to Server notifications for Subscription related changes of a customer. CANCEL notification is sent out in two scenarios: User calls customer care to cancel their subscription. User changes to an upgraded plan. In case 2, an…
mickeymoon
  • 4,820
  • 5
  • 31
  • 56
3
votes
4 answers

In-app purchase and subscriptions in android apps

Can we have in-app purchase and subscription options in android apps? If yes, how do we implement it?
techno
  • 773
  • 2
  • 8
  • 16
3
votes
0 answers

Android app is not published in alpha test mode

Application is rejected from the play store. So, I have uploaded app in alpha testing for implementing a subscription, still we are not able to see opt-in the link for the tester. Instead of an opt-in link, we only able to see "An opt-in link will…
Chetan Patil
  • 542
  • 1
  • 5
  • 23
3
votes
1 answer

Auto-Renewable Subscription never expires in Sandbox

I have successfully implemented auto-renewable subscriptions (In App Purchase) in my app using StoreKit. I am still in development mode so I am using sandbox user for testing. Once I subscribe to the monthly subscription using the sandbox…
3
votes
1 answer

MSGraph subscription create error: "message": "Operation: Create; Exception: [Status Code: Unauthorized; Reason: ]", "code": "ExtensionError"

I need to create subscription to users using Microsoft Graph. I have all rights in Aure Active Directory: User.Read.All. My subscription method: def create_subscription_to_users(self): t = datetime.utcnow() +…