-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unimplemented methods #22
Comments
Here's two new endpoints from version 4.44.1: 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, an international and a national one. |
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 I didn't have the time to deal with that yet. The following endpoints have changed in connection with that: def post_user_verification_instance_id(self, iid, **kwargs):
return self._send_request("POST", "/v3/user/verification/iid", payload={"iid": iid}, **kwargs)
def signup_to_get_access_token(self, client_id, device_uid, iid, location, **kwargs):
return self._send_request("POST", "/v2/users/", payload={"client_id": client_id, "device_uid": device_uid, "iid": iid, "location": location}, **kwargs) Full-text search is possible now: def post_posts_search(self, message, skip, limit, home, **kwargs):
return self._send_request("POST", "/v3/posts/search", params={"skip": skip, "limit": limit, "home": home}, payload={"message": message}, **kwargs) |
These don't work yet: 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, place_id, after, limit, **kwargs):
return self._send_request("GET", "/v3/posts/filter/places/{}/popular".format(place_id), params={"after": after, "limit": limit}, **kwargs)
def get_filter_place_recent(self, place_id, after, limit, **kwargs):
return self._send_request("GET", "/v3/posts/filter/places/{}/recent".format(place_id), params={"after": after, "limit": limit}, **kwargs)
def get_place_search(self, **kwargs):
return self._send_request("GET", "/v3/places/search", **kwargs) |
The following methods are availabe through the Jodel API but not implemented for various reasons. Leave a comment if you want some of them in
jodel_api
(they're untested but should be mostly production ready, so you can just copy them in if you want).Moderation:
I'd like to implement them, but I don't have a moderation-enabled account, so I can't test them. If you'd be willing to hand me a mod account, please contact me.
These seem rather unneccessary:
I don't even know what they're for:
These methods are probably an alternative verification method to the captcha. Might be useful in the future if they disable the captcha verification.
The text was updated successfully, but these errors were encountered: