Torvin
Torvin
> I'll try it, so what is the mechanism? In addition to checking the key, does twitter check the request header? This version number is not the latest twitter version,...
I use Twidere every day and it works perfectly. You need to log in with that official key though (via XAuth), otherwise it doesn't use the official key
> How did you do it, did you use the official twitter client to capture packets Logging in via Twidere works, unless you get login challenge. If you do -...
> 2\. I don't know the reason Like I said, the reason is that you are getting the login challenge. You need to use the Python script above in that...
> The Python script has a url address that returns 302, you can read my comment in githu.io if it doesn't work anymore - that means something has changed yet...
> See my post here - [#1475 (comment)](https://github.com/TwidereProject/Twidere-Android/issues/1475#issuecomment-1646559952) but this doesn't seem to change anything any more in terms of allowing more access. Possibly an even newer version number is...
> Let's just wait until February 9, let's not get ahead of ourselves, but my guess is twidere will still work, because we're using official Twitter consumer key and consumer...
I added this to the script to enable native VT100 support on Windows 10: ```python from ctypes import * def enableVT100(): STD_OUTPUT_HANDLE = -11 ENABLE_VIRTUAL_TERMINAL_PROCESSING = 4 stdout = windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE)...
I forked this repo and included the above VT100 enabling code: https://github.com/Torvin/pidcat-win10 @JakeWharton will a pull request with my changes be accepted?
The original algorithm is [using](https://github.com/reactjs/react-autocomplete/blob/master/lib/Autocomplete.js#L423) `getBoundingClientRect()`, ignoring the fact that the `menu` and the `input` could belong to different [offset parents](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetParent). I came up with the following workaround: ```ts function...