Show
Ignore:
Timestamp:
10/02/08 08:41:31 (3 months ago)
Author:
poolmmjp
Message:

投稿するとき、+文字をURLエンコードするようにした。

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/csharp/MMMMB/MMMMB/MiniBlogs/Jaiku.cs

    r18372 r20445  
    8989            WebClient client = new WebClient(); 
    9090            client.Headers.Add("Content-Type", "application/x-www-form-urlencoded"); 
    91             client.UploadString("http://api.jaiku.com/json", "POST", "user=" + username + "&personal_key=" + password + "&method=presence.send&message=" + Uri.EscapeUriString(message)); 
     91            client.UploadString("http://api.jaiku.com/json", "POST", "user=" + username + "&personal_key=" + password + "&method=presence.send&message=" + Uri.EscapeUriString(message).Replace("+", "%2B")); 
    9292        } 
    9393