Skip to content

Instantly share code, notes, and snippets.

@ryu22e
Created July 6, 2010 14:28
Show Gist options
  • Save ryu22e/465446 to your computer and use it in GitHub Desktop.
Save ryu22e/465446 to your computer and use it in GitHub Desktop.
Net::Wassrで画像を投稿できるようにするパッチ
145c145,151
< my $res = $self->{ua}->post( $self->{apiurl} . $api, content => $args, );
---
> my $res;
> if ($args->{image}) {
> $res = $self->{ua}->post( $self->{apiurl} . $api, Content_Type => 'multipart/form-data', content => $args, );
> }
> else {
> $res = $self->{ua}->post( $self->{apiurl} . $api, content => $args, );
> }
@ryu22e
Copy link
Author

ryu22e commented Jul 6, 2010

対象バージョンは0.02

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment