Re: [android-developers] Is it possible to upload?

2011-01-18 Thread Abhilash baddam
Hi,

I got something, but there i have to pass request with parameters developer
key,clientid,domain and domain name..what i have to pass there.

I got information from this link
http://code.google.com/p/ytd-android/downloads/detail?name=ytd-android-0.2.tar.gzcan=2q=

On Mon, Jan 17, 2011 at 9:05 PM, Kevin Duffey andjar...@gmail.com wrote:

 Abhilash,

 I think what Kumar is suggesting is you do more than just ask someone on
 the forum to do it for you. There are some things that are probably not good
 for a beginner java developer who is also learning java to try to do
 initially. Hence, dig in, read, learn.

 As he said, the java APIs.. well really the HTTP calls to make, are what
 you want to look into. Android has HttpClient, which has been used by many
 to make HTTP calls for API access to services. These are sometimes referred
 to as REST calls, depending on if the API is a REST api, or just a simple
 HTTP api.

 Your original post was 5 days ago. What have you discovered in those 5
 days? Google is an invaluable resource in things like this. I am sure you
 did a search for Android Youtube API.. how to call youtube from android, how
 to post to youtube from android, and so on right?

 I have found most of the time I can find examples of code out there.

 On the flip side of this, I myself am looking for the right way to use
 HttpClient to send a binary file to any service. I have my own rest service,
 and for the fun of learning am making a simple camera app for my wife..
 where by it takes a snap, then sends the image to a service where it will be
 emailed out to many people at once. I can't seem to get the actual byte[] of
 the image to connect to my service yet. It's probably similar to what you'll
 need to do for a youtube post of a video.

 The fun of discovering. :)



 On Mon, Jan 17, 2011 at 3:08 AM, Kumar Bibek coomar@gmail.com wrote:

 What's the issue here?


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Mon, Jan 17, 2011 at 4:31 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Any help in this issue...


 On Thu, Jan 13, 2011 at 12:30 PM, Kumar Bibek coomar@gmail.comwrote:

 You can use Java if you want, else, use the normal HTTP Get Post
 requests mentioned there.



 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Thu, Jan 13, 2011 at 12:29 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi kumar,

In Youtube official website i was found  apis for
 java,.net,php etc but i didn't find any api's for android there. can you
 send me the links where i can get those apis for android.


 On Wed, Jan 12, 2011 at 9:22 PM, Kumar Bibek coomar@gmail.comwrote:

 Have you looed into the APIs? If yes, what are the problems that you
 are facing. If no, please go through it first.


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to
 solve this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek 
 coomar@gmail.comwrote:

 Sure. Look at the youtube official APIs. You will find a few code
 snippets as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *youtube
 * from my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding
 this issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received 

Re: [android-developers] Is it possible to upload?

2011-01-18 Thread Abhilash baddam
Hi,
 I am getting response code 403.

On Tue, Jan 18, 2011 at 3:06 PM, Abhilash baddam 
abhilash.androiddevelo...@gmail.com wrote:

 Hi,

 I got something, but there i have to pass request with parameters developer
 key,clientid,domain and domain name..what i have to pass there.

 I got information from this link
 http://code.google.com/p/ytd-android/downloads/detail?name=ytd-android-0.2.tar.gzcan=2q=


 On Mon, Jan 17, 2011 at 9:05 PM, Kevin Duffey andjar...@gmail.com wrote:

 Abhilash,

 I think what Kumar is suggesting is you do more than just ask someone on
 the forum to do it for you. There are some things that are probably not good
 for a beginner java developer who is also learning java to try to do
 initially. Hence, dig in, read, learn.

 As he said, the java APIs.. well really the HTTP calls to make, are what
 you want to look into. Android has HttpClient, which has been used by many
 to make HTTP calls for API access to services. These are sometimes referred
 to as REST calls, depending on if the API is a REST api, or just a simple
 HTTP api.

 Your original post was 5 days ago. What have you discovered in those 5
 days? Google is an invaluable resource in things like this. I am sure you
 did a search for Android Youtube API.. how to call youtube from android, how
 to post to youtube from android, and so on right?

 I have found most of the time I can find examples of code out there.

 On the flip side of this, I myself am looking for the right way to use
 HttpClient to send a binary file to any service. I have my own rest service,
 and for the fun of learning am making a simple camera app for my wife..
 where by it takes a snap, then sends the image to a service where it will be
 emailed out to many people at once. I can't seem to get the actual byte[] of
 the image to connect to my service yet. It's probably similar to what you'll
 need to do for a youtube post of a video.

 The fun of discovering. :)



 On Mon, Jan 17, 2011 at 3:08 AM, Kumar Bibek coomar@gmail.comwrote:

 What's the issue here?


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Mon, Jan 17, 2011 at 4:31 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Any help in this issue...


 On Thu, Jan 13, 2011 at 12:30 PM, Kumar Bibek coomar@gmail.comwrote:

 You can use Java if you want, else, use the normal HTTP Get Post
 requests mentioned there.



 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Thu, Jan 13, 2011 at 12:29 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi kumar,

In Youtube official website i was found  apis for
 java,.net,php etc but i didn't find any api's for android there. can you
 send me the links where i can get those apis for android.


 On Wed, Jan 12, 2011 at 9:22 PM, Kumar Bibek coomar@gmail.comwrote:

 Have you looed into the APIs? If yes, what are the problems that you
 are facing. If no, please go through it first.


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to
 solve this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek 
 coomar@gmail.comwrote:

 Sure. Look at the youtube official APIs. You will find a few code
 snippets as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *
 youtube* from my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding
 this issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 

Re: [android-developers] Is it possible to upload?

2011-01-18 Thread Kumar Bibek
Of course you have to . But I would suggest that you should either try out
the official java library (this might be difficult since that has a few
dependencies which might not compile on Android).

http://code.google.com/apis/youtube/2.0/developers_guide_java.html

You can also try the Protocol
http://code.google.com/apis/youtube/2.0/developers_guide_protocol.html

This should be your next step if you are not able to get the Java API
working.


Kumar Bibek
http://techdroid.kbeanie.com
http://www.kbeanie.com



On Tue, Jan 18, 2011 at 3:06 PM, Abhilash baddam 
abhilash.androiddevelo...@gmail.com wrote:

 Hi,

 I got something, but there i have to pass request with parameters developer
 key,clientid,domain and domain name..what i have to pass there.

 I got information from this link
 http://code.google.com/p/ytd-android/downloads/detail?name=ytd-android-0.2.tar.gzcan=2q=

 On Mon, Jan 17, 2011 at 9:05 PM, Kevin Duffey andjar...@gmail.com wrote:

 Abhilash,

 I think what Kumar is suggesting is you do more than just ask someone on
 the forum to do it for you. There are some things that are probably not good
 for a beginner java developer who is also learning java to try to do
 initially. Hence, dig in, read, learn.

 As he said, the java APIs.. well really the HTTP calls to make, are what
 you want to look into. Android has HttpClient, which has been used by many
 to make HTTP calls for API access to services. These are sometimes referred
 to as REST calls, depending on if the API is a REST api, or just a simple
 HTTP api.

 Your original post was 5 days ago. What have you discovered in those 5
 days? Google is an invaluable resource in things like this. I am sure you
 did a search for Android Youtube API.. how to call youtube from android, how
 to post to youtube from android, and so on right?

 I have found most of the time I can find examples of code out there.

 On the flip side of this, I myself am looking for the right way to use
 HttpClient to send a binary file to any service. I have my own rest service,
 and for the fun of learning am making a simple camera app for my wife..
 where by it takes a snap, then sends the image to a service where it will be
 emailed out to many people at once. I can't seem to get the actual byte[] of
 the image to connect to my service yet. It's probably similar to what you'll
 need to do for a youtube post of a video.

 The fun of discovering. :)



 On Mon, Jan 17, 2011 at 3:08 AM, Kumar Bibek coomar@gmail.comwrote:

 What's the issue here?


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Mon, Jan 17, 2011 at 4:31 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Any help in this issue...


 On Thu, Jan 13, 2011 at 12:30 PM, Kumar Bibek coomar@gmail.comwrote:

 You can use Java if you want, else, use the normal HTTP Get Post
 requests mentioned there.



 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Thu, Jan 13, 2011 at 12:29 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi kumar,

In Youtube official website i was found  apis for
 java,.net,php etc but i didn't find any api's for android there. can you
 send me the links where i can get those apis for android.


 On Wed, Jan 12, 2011 at 9:22 PM, Kumar Bibek coomar@gmail.comwrote:

 Have you looed into the APIs? If yes, what are the problems that you
 are facing. If no, please go through it first.


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to
 solve this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek 
 coomar@gmail.comwrote:

 Sure. Look at the youtube official APIs. You will find a few code
 snippets as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *
 youtube* from my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding
 this issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 

Re: [android-developers] Is it possible to upload?

2011-01-17 Thread Abhilash baddam
Any help in this issue...

On Thu, Jan 13, 2011 at 12:30 PM, Kumar Bibek coomar@gmail.com wrote:

 You can use Java if you want, else, use the normal HTTP Get Post requests
 mentioned there.



 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Thu, Jan 13, 2011 at 12:29 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi kumar,

In Youtube official website i was found  apis for
 java,.net,php etc but i didn't find any api's for android there. can you
 send me the links where i can get those apis for android.


 On Wed, Jan 12, 2011 at 9:22 PM, Kumar Bibek coomar@gmail.comwrote:

 Have you looed into the APIs? If yes, what are the problems that you are
 facing. If no, please go through it first.


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to
 solve this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek coomar@gmail.comwrote:

 Sure. Look at the youtube official APIs. You will find a few code
 snippets as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *youtube*from 
 my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding this
 issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Is it possible to upload?

2011-01-17 Thread Kumar Bibek
What's the issue here?

Kumar Bibek
http://techdroid.kbeanie.com
http://www.kbeanie.com



On Mon, Jan 17, 2011 at 4:31 PM, Abhilash baddam 
abhilash.androiddevelo...@gmail.com wrote:

 Any help in this issue...


 On Thu, Jan 13, 2011 at 12:30 PM, Kumar Bibek coomar@gmail.comwrote:

 You can use Java if you want, else, use the normal HTTP Get Post requests
 mentioned there.



 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Thu, Jan 13, 2011 at 12:29 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi kumar,

In Youtube official website i was found  apis for
 java,.net,php etc but i didn't find any api's for android there. can you
 send me the links where i can get those apis for android.


 On Wed, Jan 12, 2011 at 9:22 PM, Kumar Bibek coomar@gmail.comwrote:

 Have you looed into the APIs? If yes, what are the problems that you are
 facing. If no, please go through it first.


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to
 solve this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek coomar@gmail.comwrote:

 Sure. Look at the youtube official APIs. You will find a few code
 snippets as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *youtube*from 
 my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding
 this issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send 

Re: [android-developers] Is it possible to upload?

2011-01-17 Thread Kevin Duffey
Abhilash,

I think what Kumar is suggesting is you do more than just ask someone on the
forum to do it for you. There are some things that are probably not good for
a beginner java developer who is also learning java to try to do initially.
Hence, dig in, read, learn.

As he said, the java APIs.. well really the HTTP calls to make, are what you
want to look into. Android has HttpClient, which has been used by many to
make HTTP calls for API access to services. These are sometimes referred to
as REST calls, depending on if the API is a REST api, or just a simple HTTP
api.

Your original post was 5 days ago. What have you discovered in those 5 days?
Google is an invaluable resource in things like this. I am sure you did a
search for Android Youtube API.. how to call youtube from android, how to
post to youtube from android, and so on right?

I have found most of the time I can find examples of code out there.

On the flip side of this, I myself am looking for the right way to use
HttpClient to send a binary file to any service. I have my own rest service,
and for the fun of learning am making a simple camera app for my wife..
where by it takes a snap, then sends the image to a service where it will be
emailed out to many people at once. I can't seem to get the actual byte[] of
the image to connect to my service yet. It's probably similar to what you'll
need to do for a youtube post of a video.

The fun of discovering. :)


On Mon, Jan 17, 2011 at 3:08 AM, Kumar Bibek coomar@gmail.com wrote:

 What's the issue here?


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Mon, Jan 17, 2011 at 4:31 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Any help in this issue...


 On Thu, Jan 13, 2011 at 12:30 PM, Kumar Bibek coomar@gmail.comwrote:

 You can use Java if you want, else, use the normal HTTP Get Post requests
 mentioned there.



 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Thu, Jan 13, 2011 at 12:29 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi kumar,

In Youtube official website i was found  apis for
 java,.net,php etc but i didn't find any api's for android there. can you
 send me the links where i can get those apis for android.


 On Wed, Jan 12, 2011 at 9:22 PM, Kumar Bibek coomar@gmail.comwrote:

 Have you looed into the APIs? If yes, what are the problems that you
 are facing. If no, please go through it first.


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to
 solve this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek coomar@gmail.comwrote:

 Sure. Look at the youtube official APIs. You will find a few code
 snippets as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to 
 *youtube*from my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding
 this issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 

[android-developers] Is it possible to upload?

2011-01-12 Thread Abhilash baddam
Hi friends,

   I want to upload a file like mp3 or 3gp to *youtube* from my
application. Is it possible if yes can anyone
  send me code snippet or links which is useful regarding this
issue.






Regards,
Abhilash.B

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Is it possible to upload?

2011-01-12 Thread Kumar Bibek
Sure. Look at the youtube official APIs. You will find a few code snippets
as well

Kumar Bibek
http://techdroid.kbeanie.com
http://www.kbeanie.com



On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *youtube* from
 my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding this
 issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Is it possible to upload?

2011-01-12 Thread Abhilash baddam
Hi Kumar Bibek,

   if you don't mind Can you help me out more to solve
this problem.

On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek coomar@gmail.com wrote:

 Sure. Look at the youtube official APIs. You will find a few code snippets
 as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *youtube* from
 my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding this
 issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Is it possible to upload?

2011-01-12 Thread Kumar Bibek
Have you looed into the APIs? If yes, what are the problems that you are
facing. If no, please go through it first.

Kumar Bibek
http://techdroid.kbeanie.com
http://www.kbeanie.com



On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to solve
 this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek coomar@gmail.com wrote:

 Sure. Look at the youtube official APIs. You will find a few code snippets
 as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *youtube* from
 my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding this
 issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Is it possible to upload?

2011-01-12 Thread Abhilash baddam
Hi kumar,

   In Youtube official website i was found  apis for
java,.net,php etc but i didn't find any api's for android there. can you
send me the links where i can get those apis for android.

On Wed, Jan 12, 2011 at 9:22 PM, Kumar Bibek coomar@gmail.com wrote:

 Have you looed into the APIs? If yes, what are the problems that you are
 facing. If no, please go through it first.


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to solve
 this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek coomar@gmail.comwrote:

 Sure. Look at the youtube official APIs. You will find a few code
 snippets as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *youtube*from my 
 application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding this
 issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Is it possible to upload?

2011-01-12 Thread Kumar Bibek
You can use Java if you want, else, use the normal HTTP Get Post requests
mentioned there.


Kumar Bibek
http://techdroid.kbeanie.com
http://www.kbeanie.com



On Thu, Jan 13, 2011 at 12:29 PM, Abhilash baddam 
abhilash.androiddevelo...@gmail.com wrote:

 Hi kumar,

In Youtube official website i was found  apis for
 java,.net,php etc but i didn't find any api's for android there. can you
 send me the links where i can get those apis for android.


 On Wed, Jan 12, 2011 at 9:22 PM, Kumar Bibek coomar@gmail.com wrote:

 Have you looed into the APIs? If yes, what are the problems that you are
 facing. If no, please go through it first.


 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 8:59 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi Kumar Bibek,

if you don't mind Can you help me out more to
 solve this problem.


 On Wed, Jan 12, 2011 at 7:17 PM, Kumar Bibek coomar@gmail.comwrote:

 Sure. Look at the youtube official APIs. You will find a few code
 snippets as well

 Kumar Bibek
 http://techdroid.kbeanie.com
 http://www.kbeanie.com



 On Wed, Jan 12, 2011 at 6:50 PM, Abhilash baddam 
 abhilash.androiddevelo...@gmail.com wrote:

 Hi friends,

I want to upload a file like mp3 or 3gp to *youtube*from 
 my application. Is it possible if yes can anyone
   send me code snippet or links which is useful regarding this
 issue.






 Regards,
 Abhilash.B

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to
 android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] It is possible to upload multiple APK to Android Market?

2010-07-07 Thread Alexander Krug
Hi

We have an Android app but it consist of multiple APKs, it is possible
to upload it like this? or should I make an One-apk-app?


Greetings

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en