Hi,
I am working on a automated tweets project through twitter api, I code it on C# and I am sure that my authentication process works. When I try to send a tweet like
"iyi yolculuklar :)" it works (
is coded as %3A%29)
“güzel yolculuklar” it works (it contains a turkish character “ü” which is coded as %C3%BC)
but when I try to send
"güzel yolculuklar :)" it doesn’t work
I don’t know why but using turkish characters and : or ) at the same time in a tweet gives error.
And if I make the request through postman it works, only in C# request returns an 401 Unauthorized error.
How can I fix this problem?