subscriptions

real time update include_values is not supported

谁都会走 提交于 2019-12-10 19:15:40
问题 I wanted to update the "callback_url" (https://graph.facebook.com/subscriptions) but the problem is that I can not add the "include_values" and it is a very big problem because my entire program works with { "error": { "message": "(#100) include_values is not supported", "type": "OAuthException", "code": 100 } } example facebook callback with "include_values" {"object":"user","entry":[{"id":"44368442315","time":1346984937,"changes":[{"field":"feed","value":{"item":"like","verb":"add","parent

Delivery of auto-renewing subscriptions for iOS

喜夏-厌秋 提交于 2019-12-09 07:16:26
问题 I am finding that the renewal of an expired auto-renewing subscription is never being delivered while the application is active and running, but rather when the application is woken up from background or on launch. In other words if you are using the app, and the subscription expires, it won't be delivered to the app (assuming it is auto-renewing and valid etc) while the user continues to use the app. This behaviour does not seem to be documented by Apple, can anyone else with experience of

500 HttpError when trying to extend googlesamples/android-play-publisher-api to make a subscription revoker

邮差的信 提交于 2019-12-08 11:04:32
问题 So that I can test the subscription functionality of my app, I need to be able to revoke subscriptions. This apparently is not possible just using Google's back end. Instead, it is necessary to use google-play-android-developer-API . I have downloaded the python android play publisher samples, and gotten them to work. I can for instance run the basic_list_apks.py script to see the list of APKs. This shows that I am authenticating my self correctly etc. I extended that same basic_list_apks.py

Drupal subscriptions to taxonomy only

佐手、 提交于 2019-12-08 05:13:36
问题 Playing around with the subscriptions module; i have some troubles getting it to send the right notification for right subscription. Here's the situation : I have a content-type of type 'work'; it has a cck-taxonomy field; when creating the content users choses one category in which his 'work' fulfills. In user profil, under Categories (user/3/subscriptions/taxa) I choose two categories, lets say 'house work' and 'car work'. When creating a new 'work' content I do not get the notification.

Woocommerce Subscriptions display next payment date

两盒软妹~` 提交于 2019-12-07 20:19:24
问题 I'm using the Woocommerce Subscriptions plugin, and in the processing order renewal email I wanted to show when the next payment date will be. However when I try to access the next payment date for an order it always returns false. <?php if (WC_Subscriptions_Renewal_Order::is_renewal( $order ) ) { /* This returns true */ $parent_id = WC_Subscriptions_Renewal_Order::get_parent_order_id( $order ); /* This gets the original parent order id */ $parent_order = new WC_Order( $parent_id ); foreach (

Can a user purchase multiple non-renewing Apple subscriptions to extend their expiration date? [closed]

自作多情 提交于 2019-12-07 08:20:50
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . In the auto-renewable subscription system, it's not possible for a user to purchase a subscription more than one time. You'd end up with a message that says like, "you're already subscribed." However, with non-renewing subscriptions, my understanding is that it is entirely up to us how we want to handle it. So

Using Stripe with Devise for Ruby on Rails Subscriptions

我是研究僧i 提交于 2019-12-06 12:22:09
问题 I am attempting to integrate Stripe's recurring payment system with Devise, using Ryan's recent Railscast as a guide ( http://railscasts.com/episodes/288-billing-with-stripe?view=asciicast ). Instead of a Subscription model, I want to use my existing User model. I got past adding the Stripe keys, adding the form fields to /users/sign_up, adding the js and meta tag in the head, and I have created a users.js.coffee file in assets. When I submit the form, I get no error, and no type of feedback

Invalid expire date after subscription purchase

本秂侑毒 提交于 2019-12-06 06:37:58
问题 i've got an android app with in-app subscriptions. After the user has purchased a subscription, i request the "validUntilTimestampMsec" and "initiationTimestampMsec" through our backend by the Google API. The returning timestamp "initiationTimestamp" is correct and represents the time the user has made the purchase, but the returning timestamp "validUntilTimestamp" has always a difference of +12 hours to the real valid-until time i need. The function i use to retrieve the date is simmilar to

Can a user purchase multiple non-renewing Apple subscriptions to extend their expiration date? [closed]

有些话、适合烂在心里 提交于 2019-12-05 11:48:02
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . In the auto-renewable subscription system, it's not possible for a user to purchase a subscription more than one time. You'd end up with a message that says like, "you're already subscribed." However, with non-renewing subscriptions, my understanding is that it is entirely up to us how we want to handle it. So let's say our subscription length is one year. If a user purchases a subscription, and 6 months later

Limit number of results in Meteor on the server side?

一曲冷凌霜 提交于 2019-12-04 19:09:41
问题 I have some code as shown below. There are about 60K entries in my keywords collection in Mongo. I really just want the top 25, so I'm trying to set a limit find. I'm running the same query to print out my number of results. For some reason, the limiting does not seem to work because my log message says 60K or so. Is this sort of thing not possible? I can set a limit on the client side that works, but I thought I would try to limit things on the server so less data would get sent across. A