Hi guys,
I have a really strange behavior with encoding my request. I tried to follow all steps from Twitter recommendation but for Swedish characters (å, ö, ä, Å, Ä, Ö) I have got question mark in my tweets.
That how it looks my request string:
status=%23BMW%20utvecklar%20dubbelkopplingsl%E5da%20f%F6r%20framhjulsdrift&media_ids=675238385741635584
To send my request string to Twitter side I used conversion to byte array
Encoding.UTF8.GetBytes(GetCustomParametersString());
If I use text without Swedish special characters it works perfect even with spaces, comma etc.
Do you have any ideas?