nbo
nbo
Here's two new endpoints from version 4.44.1: ``` python def feed_internationalization_disable(self, **kwargs): return self._send_request("PUT", "/v3/user/feedInternationalization/disable", **kwargs) def feed_internationalization_enable(self, **kwargs): return self._send_request("PUT", "/v3/user/feedInternationalization/enable", **kwargs) ``` Apparently there will be two feeds,...
New stuff in version 4.48: **Captcha verification has been removed.** Now it is only possible to verify an account using google cloud messaging. This should be reversible as well, but...
These don't work yet: ``` python def get_filter_place_combo(self, place_id, **kwargs): return self._send_request("GET", "/v3/posts/filter/places/{}/combo".format(place_id), **kwargs) def get_filter_place_discussed(self, place_id, after, limit, **kwargs): return self._send_request("GET", "/v3/posts/filter/places/{}/discussed".format(place_id), params={"after": after, "limit": limit}, **kwargs) def get_filter_place_popular(self,...
I don't think that deleting (what does "closing" even mean?) the repos makes any sense, there's too many forks and they won't be able to remove all of them. They...
Yeah, that won't solve anything. all the forks can still be found via google or github search.
@petrekova Yeah, that's a bit broken. But it does publish the newest version on PyPI, the issue is that it fails if the current version already exists on PyPI. Previously...
Looks like Google changed something about the GCM protocol. Don't really have time to debug this now. You can try to add some print statements to see what messages we...
Meh, I'm not sure. They said the same thing a few months back when I wrote the thing. Pretty sure they can't disable the old endpoints, because of old devices...
rtfm 🙂
> In order to devote more time and attention to improving FCM, today we’re announcing that you must upgrade to FCM in the next year. The GCM server and client...