Hi @episod
I changed the api to use count instead of per_page.
For the requests that don’t work via squid proxy, I used wireshark to capture https traffic and found that after the application data(encrypted get request) is sent to twitter server, the twitter server responds back with Encrypted Alert (21) followed by TCP [FIN,ACK] message to close the connection.
Any idea why the “Decryption failed” on twitter server for this particular request ?
Request that does not work over https via squid proxy
https://api.twitter.com/1.1/users/search.json?count=20&q=Julia
Request that does works over https via squid proxy
https://api.twitter.com/1.1/users/search.json?count=20&q=Julia+Roberts
Note: If I switch to http twitter endpoints then, both the above requests are successful.
Thanks in advance