Smart Lab Helping Forum

Members Login
Username 
 
Password 
    Remember Me  
Post Info TOPIC: ANDROID HELP


Veteran Member

Status: Offline
Posts: 39
Date:
ANDROID HELP
Permalink  
 


Please ask your android questions in this thread.



__________________


Newbie

Status: Offline
Posts: 3
Date:
Permalink  
 

Salam
i am trying to upload picture on Facebook account but there is a problem and code for this is:
mUploadButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Bundle params = new Bundle();
params.putString("method", "photos.upload");

URL uploadFileUrl = null;
try {
uploadFileUrl = new URL(
"http://www.facebook.com/images/devsite/iphone_connect_btn.jpg");
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
HttpURLConnection conn= (HttpURLConnection)uploadFileUrl.openConnection();
conn.setDoInput(true);
conn.connect();

int length = conn.getContentLength();

byte[] imgData =new byte[length];
InputStream is = conn.getInputStream();
is.read(imgData);
params.putByteArray("picture", imgData);

} catch (IOException e) {
e.printStackTrace();
}

mAsyncRunner.request("me", params, "POST",
new SampleUploadListener(), null);
}

});
mUploadButton.setVisibility(mFacebook.isSessionValid() ?
View.VISIBLE :
View.INVISIBLE);

There is a problem that it is not uploading the picture to my account. if i change the statement
mAsyncRunner.request("me", params, "POST", new SampleUploadListener(), null);
to
mAsyncRunner.request(null, params, "POST", new SampleUploadListener(), null);
then it works fine and uploading the picture on some site. Plz help me in uploading picture to my page of FB.
Thanks a lot.

__________________
maryam


Veteran Member

Status: Offline
Posts: 39
Date:
Permalink  
 

Maryam,

      Can you visit SMART Lab sometime! We'll solve your problem after running your code. At the moment I can't seem to solve it here!

 

Thanks



__________________


Newbie

Status: Offline
Posts: 3
Date:
Permalink  
 

Thanks a lot sir.

when will you be free tomorrow??

__________________
maryam


Veteran Member

Status: Offline
Posts: 39
Date:
Permalink  
 

Can you come around 12?



__________________


Newbie

Status: Offline
Posts: 3
Date:
Permalink  
 

ok sir.

__________________
maryam
Page 1 of 1  sorted by
 
Quick Reply

Please log in to post quick replies.



Create your own FREE Forum
Report Abuse
Powered by ActiveBoard