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/FriendFeed.cs

    r18564 r20445  
    102102            client.Headers.Add("Content-Type", "application/x-www-form-urlencoded"); 
    103103            client.Headers.Add("Authorization", "Basic " + Convert.ToBase64String(Encoding.ASCII.GetBytes(username + ":" + password))); 
    104             client.UploadString("http://friendfeed.com/api/share", "POST", "title=" + Uri.EscapeUriString(message)); 
     104            client.UploadString("http://friendfeed.com/api/share", "POST", "title=" + Uri.EscapeUriString(message).Replace("+", "%2B")); 
    105105        } 
    106106