[twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-06-01 Thread Deepa
Thanks for the link.

On Jun 1, 9:22 am, Abraham Williams 4bra...@gmail.com wrote:
 http://www.twitvid.com/index.php?area=aboutaction=contact





 On Mon, May 31, 2010 at 21:19, Deepa deepapai0...@gmail.com wrote:
  Could you please suggest the link where I can ask for TwitVid library
  with OAuth support.

  On May 31, 9:01 am, Abraham Williams 4bra...@gmail.com wrote:
   I would think the TwitVid library would include the method but you will
  have
   to ask them.

   Abraham

   On Sun, May 30, 2010 at 20:51, Deepa deepapai0...@gmail.com wrote:
Thanks for the reply.

I am new to TwitVid APIs. I have gone through the documentation of
TwitVid APIs and OAuth Echo. But, I could not understand the concept
of x_verify_credentials_authorization as alternate for User name and
password parameters.  Also, could you please help me out in explaining
how to get value of  the parameter x_verify_credentials_authorization
i.e OAuth Echo Authorization header.

Is there any call in TwitVid library that allows to set the value of
the parameter 'x_verify_credentials_authorization'?

Thanks in advance.

On May 29, 11:16 pm, Abraham Williams 4bra...@gmail.com wrote:
 x_verify_credentials_authorization: Required if no username/password
sent.
 OAuth Echo Authorization header.

 Abraham

 On Sat, May 29, 2010 at 10:42, Deepa deepapai0...@gmail.com wrote:
  On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote:
   Twitvid supports OAuth Echo:
 http://twitvid.pbworks.com/authenticate

  But, according to thisocumentation the authentication mechanism
  needs
  user-name and password. But I cannot get the password. Because, I
  am
  using OAuth for authentication in which user is redirected to the
  web-
  page for entering user-name and password. I have used OAuth since
  Twitter is removing the  of authentication mechanism which passes
  user-
  name and password as arguments.

  Thanks and regards,
  Deepa

   More info on Echo:

 http://mehack.com/oauth-echo-delegation-in-identity-verificatiohttp:/.
..

   You will have to ask Twitvid if their iPhone library supports
  Echo.

   Abraham

   On Fri, May 28, 2010 at 06:23, Deepa deepapai0...@gmail.com
  wrote:
Hi,

I am developing an iPhone app that uses Twitvid library for
uploading
videos to TwitVid. This library first authenticates the app
  using
the
user-name and password input parameters. Then it uploads the
  video.
But, recently I switched to OAuth mechanism of authentication
  which
leads to a web-page where user can enter the user-name and
password.
So, I cannot provide the input fields for user-name and
  password in
my
app for uploading video.

Can someone help me out to solve this problem.

Thanks and Regards,
Deepa

   --
   Abraham Williams | Developer for hire |http://abrah.am
   @abraham |http://projects.abrah.am|http://blog.abrah.am
   This email is: [ ] shareable [x] ask first [ ] private.

 --
 Abraham Williams | Developer for hire |http://abrah.am
 @abraham |http://projects.abrah.am|http://blog.abrah.am
 This email is: [ ] shareable [x] ask first [ ] private.

   --
   Abraham Williams | Developer for hire |http://abrah.am
   @abraham |http://projects.abrah.am|http://blog.abrah.am
   This email is: [ ] shareable [x] ask first [ ] private.

 --
 Abraham Williams | Developer for hire |http://abrah.am
 @abraham |http://projects.abrah.am|http://blog.abrah.am
 This email is: [ ] shareable [x] ask first [ ] private.


[twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-31 Thread Rich

Assuming you've already got the code for oauth itself working there
isn't much more you need to do

When you create an oauth request you are adding an Authorization
header to the HTTP request that contains your oauth signatures.

For oauth echo you need to generate that header as if you are making a
GET request to Twitters verify_credentials endpoint. But instead of
adding it to the Authorisation header, you add it to the x-verify-
credentials-authorisation header and send it to twitted

Howeveri think twitvids docs are wrong and you have to use hyphens
instead of underscores
On May 31, 4:51 am, Deepa deepapai0...@gmail.com wrote:
 Thanks for the reply.

 I am new to TwitVid APIs. I have gone through the documentation of
 TwitVid APIs and OAuth Echo. But, I could not understand the concept
 of x_verify_credentials_authorization as alternate for User name and
 password parameters.  Also, could you please help me out in explaining
 how to get value of  the parameter x_verify_credentials_authorization
 i.e OAuth Echo Authorization header.

 Is there any call in TwitVid library that allows to set the value of
 the parameter 'x_verify_credentials_authorization'?

 Thanks in advance.

 On May 29, 11:16 pm, Abraham Williams 4bra...@gmail.com wrote:



  x_verify_credentials_authorization: Required if no username/password sent.
  OAuth Echo Authorization header.

  Abraham

  On Sat, May 29, 2010 at 10:42, Deepa deepapai0...@gmail.com wrote:
   On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote:
Twitvid supports OAuth Echo:http://twitvid.pbworks.com/authenticate

   But, according to thisocumentation the authentication mechanism needs
   user-name and password. But I cannot get the password. Because, I am
   using OAuth for authentication in which user is redirected to the web-
   page for entering user-name and password. I have used OAuth since
   Twitter is removing the  of authentication mechanism which passes user-
   name and password as arguments.

   Thanks and regards,
   Deepa

More info on Echo:
  http://mehack.com/oauth-echo-delegation-in-identity-verificatiohttp:/...

You will have to ask Twitvid if their iPhone library supports Echo.

Abraham

On Fri, May 28, 2010 at 06:23, Deepa deepapai0...@gmail.com wrote:
 Hi,

 I am developing an iPhone app that uses Twitvid library for uploading
 videos to TwitVid. This library first authenticates the app using the
 user-name and password input parameters. Then it uploads the video.
 But, recently I switched to OAuth mechanism of authentication which
 leads to a web-page where user can enter the user-name and password.
 So, I cannot provide the input fields for user-name and password in my
 app for uploading video.

 Can someone help me out to solve this problem.

 Thanks and Regards,
 Deepa

--
Abraham Williams | Developer for hire |http://abrah.am
@abraham |http://projects.abrah.am|http://blog.abrah.am
This email is: [ ] shareable [x] ask first [ ] private.

  --
  Abraham Williams | Developer for hire |http://abrah.am
  @abraham |http://projects.abrah.am|http://blog.abrah.am
  This email is: [ ] shareable [x] ask first [ ] private.


[twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-31 Thread Deepa
Could you please suggest the link where I can ask for TwitVid library
with OAuth support.

On May 31, 9:01 am, Abraham Williams 4bra...@gmail.com wrote:
 I would think the TwitVid library would include the method but you will have
 to ask them.

 Abraham





 On Sun, May 30, 2010 at 20:51, Deepa deepapai0...@gmail.com wrote:
  Thanks for the reply.

  I am new to TwitVid APIs. I have gone through the documentation of
  TwitVid APIs and OAuth Echo. But, I could not understand the concept
  of x_verify_credentials_authorization as alternate for User name and
  password parameters.  Also, could you please help me out in explaining
  how to get value of  the parameter x_verify_credentials_authorization
  i.e OAuth Echo Authorization header.

  Is there any call in TwitVid library that allows to set the value of
  the parameter 'x_verify_credentials_authorization'?

  Thanks in advance.

  On May 29, 11:16 pm, Abraham Williams 4bra...@gmail.com wrote:
   x_verify_credentials_authorization: Required if no username/password
  sent.
   OAuth Echo Authorization header.

   Abraham

   On Sat, May 29, 2010 at 10:42, Deepa deepapai0...@gmail.com wrote:
On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote:
 Twitvid supports OAuth Echo:http://twitvid.pbworks.com/authenticate

But, according to thisocumentation the authentication mechanism needs
user-name and password. But I cannot get the password. Because, I am
using OAuth for authentication in which user is redirected to the web-
page for entering user-name and password. I have used OAuth since
Twitter is removing the  of authentication mechanism which passes user-
name and password as arguments.

Thanks and regards,
Deepa

 More info on Echo:
   http://mehack.com/oauth-echo-delegation-in-identity-verificatiohttp:/.
  ..

 You will have to ask Twitvid if their iPhone library supports Echo.

 Abraham

 On Fri, May 28, 2010 at 06:23, Deepa deepapai0...@gmail.com wrote:
  Hi,

  I am developing an iPhone app that uses Twitvid library for
  uploading
  videos to TwitVid. This library first authenticates the app using
  the
  user-name and password input parameters. Then it uploads the video.
  But, recently I switched to OAuth mechanism of authentication which
  leads to a web-page where user can enter the user-name and
  password.
  So, I cannot provide the input fields for user-name and password in
  my
  app for uploading video.

  Can someone help me out to solve this problem.

  Thanks and Regards,
  Deepa

 --
 Abraham Williams | Developer for hire |http://abrah.am
 @abraham |http://projects.abrah.am|http://blog.abrah.am
 This email is: [ ] shareable [x] ask first [ ] private.

   --
   Abraham Williams | Developer for hire |http://abrah.am
   @abraham |http://projects.abrah.am|http://blog.abrah.am
   This email is: [ ] shareable [x] ask first [ ] private.

 --
 Abraham Williams | Developer for hire |http://abrah.am
 @abraham |http://projects.abrah.am|http://blog.abrah.am
 This email is: [ ] shareable [x] ask first [ ] private.


Re: [twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-31 Thread Abraham Williams
http://www.twitvid.com/index.php?area=aboutaction=contact

On Mon, May 31, 2010 at 21:19, Deepa deepapai0...@gmail.com wrote:

 Could you please suggest the link where I can ask for TwitVid library
 with OAuth support.

 On May 31, 9:01 am, Abraham Williams 4bra...@gmail.com wrote:
  I would think the TwitVid library would include the method but you will
 have
  to ask them.
 
  Abraham
 
 
 
 
 
  On Sun, May 30, 2010 at 20:51, Deepa deepapai0...@gmail.com wrote:
   Thanks for the reply.
 
   I am new to TwitVid APIs. I have gone through the documentation of
   TwitVid APIs and OAuth Echo. But, I could not understand the concept
   of x_verify_credentials_authorization as alternate for User name and
   password parameters.  Also, could you please help me out in explaining
   how to get value of  the parameter x_verify_credentials_authorization
   i.e OAuth Echo Authorization header.
 
   Is there any call in TwitVid library that allows to set the value of
   the parameter 'x_verify_credentials_authorization'?
 
   Thanks in advance.
 
   On May 29, 11:16 pm, Abraham Williams 4bra...@gmail.com wrote:
x_verify_credentials_authorization: Required if no username/password
   sent.
OAuth Echo Authorization header.
 
Abraham
 
On Sat, May 29, 2010 at 10:42, Deepa deepapai0...@gmail.com wrote:
 On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote:
  Twitvid supports OAuth Echo:
 http://twitvid.pbworks.com/authenticate
 
 But, according to thisocumentation the authentication mechanism
 needs
 user-name and password. But I cannot get the password. Because, I
 am
 using OAuth for authentication in which user is redirected to the
 web-
 page for entering user-name and password. I have used OAuth since
 Twitter is removing the  of authentication mechanism which passes
 user-
 name and password as arguments.
 
 Thanks and regards,
 Deepa
 
  More info on Echo:

 http://mehack.com/oauth-echo-delegation-in-identity-verificatiohttp:/.
   ..
 
  You will have to ask Twitvid if their iPhone library supports
 Echo.
 
  Abraham
 
  On Fri, May 28, 2010 at 06:23, Deepa deepapai0...@gmail.com
 wrote:
   Hi,
 
   I am developing an iPhone app that uses Twitvid library for
   uploading
   videos to TwitVid. This library first authenticates the app
 using
   the
   user-name and password input parameters. Then it uploads the
 video.
   But, recently I switched to OAuth mechanism of authentication
 which
   leads to a web-page where user can enter the user-name and
   password.
   So, I cannot provide the input fields for user-name and
 password in
   my
   app for uploading video.
 
   Can someone help me out to solve this problem.
 
   Thanks and Regards,
   Deepa
 
  --
  Abraham Williams | Developer for hire |http://abrah.am
  @abraham |http://projects.abrah.am|http://blog.abrah.am
  This email is: [ ] shareable [x] ask first [ ] private.
 
--
Abraham Williams | Developer for hire |http://abrah.am
@abraham |http://projects.abrah.am|http://blog.abrah.am
This email is: [ ] shareable [x] ask first [ ] private.
 
  --
  Abraham Williams | Developer for hire |http://abrah.am
  @abraham |http://projects.abrah.am|http://blog.abrah.am
  This email is: [ ] shareable [x] ask first [ ] private.




-- 
Abraham Williams | Developer for hire | http://abrah.am
@abraham | http://projects.abrah.am | http://blog.abrah.am
This email is: [ ] shareable [x] ask first [ ] private.


[twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-30 Thread Deepa
Thanks for the reply.

I am new to TwitVid APIs. I have gone through the documentation of
TwitVid APIs and OAuth Echo. But, I could not understand the concept
of x_verify_credentials_authorization as alternate for User name and
password parameters.  Also, could you please help me out in explaining
how to get value of  the parameter x_verify_credentials_authorization
i.e OAuth Echo Authorization header.

Is there any call in TwitVid library that allows to set the value of
the parameter 'x_verify_credentials_authorization'?

Thanks in advance.

On May 29, 11:16 pm, Abraham Williams 4bra...@gmail.com wrote:
 x_verify_credentials_authorization: Required if no username/password sent.
 OAuth Echo Authorization header.

 Abraham





 On Sat, May 29, 2010 at 10:42, Deepa deepapai0...@gmail.com wrote:
  On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote:
   Twitvid supports OAuth Echo:http://twitvid.pbworks.com/authenticate

  But, according to thisocumentation the authentication mechanism needs
  user-name and password. But I cannot get the password. Because, I am
  using OAuth for authentication in which user is redirected to the web-
  page for entering user-name and password. I have used OAuth since
  Twitter is removing the  of authentication mechanism which passes user-
  name and password as arguments.

  Thanks and regards,
  Deepa

   More info on Echo:
 http://mehack.com/oauth-echo-delegation-in-identity-verificatiohttp:/...

   You will have to ask Twitvid if their iPhone library supports Echo.

   Abraham

   On Fri, May 28, 2010 at 06:23, Deepa deepapai0...@gmail.com wrote:
Hi,

I am developing an iPhone app that uses Twitvid library for uploading
videos to TwitVid. This library first authenticates the app using the
user-name and password input parameters. Then it uploads the video.
But, recently I switched to OAuth mechanism of authentication which
leads to a web-page where user can enter the user-name and password.
So, I cannot provide the input fields for user-name and password in my
app for uploading video.

Can someone help me out to solve this problem.

Thanks and Regards,
Deepa

   --
   Abraham Williams | Developer for hire |http://abrah.am
   @abraham |http://projects.abrah.am|http://blog.abrah.am
   This email is: [ ] shareable [x] ask first [ ] private.

 --
 Abraham Williams | Developer for hire |http://abrah.am
 @abraham |http://projects.abrah.am|http://blog.abrah.am
 This email is: [ ] shareable [x] ask first [ ] private.


Re: [twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-30 Thread Abraham Williams
I would think the TwitVid library would include the method but you will have
to ask them.

Abraham

On Sun, May 30, 2010 at 20:51, Deepa deepapai0...@gmail.com wrote:

 Thanks for the reply.

 I am new to TwitVid APIs. I have gone through the documentation of
 TwitVid APIs and OAuth Echo. But, I could not understand the concept
 of x_verify_credentials_authorization as alternate for User name and
 password parameters.  Also, could you please help me out in explaining
 how to get value of  the parameter x_verify_credentials_authorization
 i.e OAuth Echo Authorization header.

 Is there any call in TwitVid library that allows to set the value of
 the parameter 'x_verify_credentials_authorization'?

 Thanks in advance.

 On May 29, 11:16 pm, Abraham Williams 4bra...@gmail.com wrote:
  x_verify_credentials_authorization: Required if no username/password
 sent.
  OAuth Echo Authorization header.
 
  Abraham
 
 
 
 
 
  On Sat, May 29, 2010 at 10:42, Deepa deepapai0...@gmail.com wrote:
   On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote:
Twitvid supports OAuth Echo:http://twitvid.pbworks.com/authenticate
 
   But, according to thisocumentation the authentication mechanism needs
   user-name and password. But I cannot get the password. Because, I am
   using OAuth for authentication in which user is redirected to the web-
   page for entering user-name and password. I have used OAuth since
   Twitter is removing the  of authentication mechanism which passes user-
   name and password as arguments.
 
   Thanks and regards,
   Deepa
 
More info on Echo:
  http://mehack.com/oauth-echo-delegation-in-identity-verificatiohttp:/.
 ..
 
You will have to ask Twitvid if their iPhone library supports Echo.
 
Abraham
 
On Fri, May 28, 2010 at 06:23, Deepa deepapai0...@gmail.com wrote:
 Hi,
 
 I am developing an iPhone app that uses Twitvid library for
 uploading
 videos to TwitVid. This library first authenticates the app using
 the
 user-name and password input parameters. Then it uploads the video.
 But, recently I switched to OAuth mechanism of authentication which
 leads to a web-page where user can enter the user-name and
 password.
 So, I cannot provide the input fields for user-name and password in
 my
 app for uploading video.
 
 Can someone help me out to solve this problem.
 
 Thanks and Regards,
 Deepa
 
--
Abraham Williams | Developer for hire |http://abrah.am
@abraham |http://projects.abrah.am|http://blog.abrah.am
This email is: [ ] shareable [x] ask first [ ] private.
 
  --
  Abraham Williams | Developer for hire |http://abrah.am
  @abraham |http://projects.abrah.am|http://blog.abrah.am
  This email is: [ ] shareable [x] ask first [ ] private.




-- 
Abraham Williams | Developer for hire | http://abrah.am
@abraham | http://projects.abrah.am | http://blog.abrah.am
This email is: [ ] shareable [x] ask first [ ] private.


[twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-29 Thread Deepa
On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote:
 Twitvid supports OAuth Echo:http://twitvid.pbworks.com/authenticate

But, according to thisocumentation the authentication mechanism needs
user-name and password. But I cannot get the password. Because, I am
using OAuth for authentication in which user is redirected to the web-
page for entering user-name and password. I have used OAuth since
Twitter is removing the  of authentication mechanism which passes user-
name and password as arguments.

Thanks and regards,
Deepa


 More info on 
 Echo:http://mehack.com/oauth-echo-delegation-in-identity-verificatiohttp://mehack.com/delegated-identity-verification-for-uploadand

 You will have to ask Twitvid if their iPhone library supports Echo.

 Abraham

 On Fri, May 28, 2010 at 06:23, Deepa deepapai0...@gmail.com wrote:
  Hi,

  I am developing an iPhone app that uses Twitvid library for uploading
  videos to TwitVid. This library first authenticates the app using the
  user-name and password input parameters. Then it uploads the video.
  But, recently I switched to OAuth mechanism of authentication which
  leads to a web-page where user can enter the user-name and password.
  So, I cannot provide the input fields for user-name and password in my
  app for uploading video.

  Can someone help me out to solve this problem.

  Thanks and Regards,
  Deepa

 --
 Abraham Williams | Developer for hire |http://abrah.am
 @abraham |http://projects.abrah.am|http://blog.abrah.am
 This email is: [ ] shareable [x] ask first [ ] private.


Re: [twitter-dev] Re: Uploading videos to Twitter using OAuth

2010-05-29 Thread Abraham Williams
x_verify_credentials_authorization: Required if no username/password sent.
OAuth Echo Authorization header.

Abraham

On Sat, May 29, 2010 at 10:42, Deepa deepapai0...@gmail.com wrote:

 On May 29, 3:53 am, Abraham Williams 4bra...@gmail.com wrote:
  Twitvid supports OAuth Echo:http://twitvid.pbworks.com/authenticate

 But, according to thisocumentation the authentication mechanism needs
 user-name and password. But I cannot get the password. Because, I am
 using OAuth for authentication in which user is redirected to the web-
 page for entering user-name and password. I have used OAuth since
 Twitter is removing the  of authentication mechanism which passes user-
 name and password as arguments.

 Thanks and regards,
 Deepa

 
  More info on Echo:
 http://mehack.com/oauth-echo-delegation-in-identity-verificatiohttp://mehack.com/delegated-identity-verification-for-uploadand
 
  You will have to ask Twitvid if their iPhone library supports Echo.
 
  Abraham
 
  On Fri, May 28, 2010 at 06:23, Deepa deepapai0...@gmail.com wrote:
   Hi,
 
   I am developing an iPhone app that uses Twitvid library for uploading
   videos to TwitVid. This library first authenticates the app using the
   user-name and password input parameters. Then it uploads the video.
   But, recently I switched to OAuth mechanism of authentication which
   leads to a web-page where user can enter the user-name and password.
   So, I cannot provide the input fields for user-name and password in my
   app for uploading video.
 
   Can someone help me out to solve this problem.
 
   Thanks and Regards,
   Deepa
 
  --
  Abraham Williams | Developer for hire |http://abrah.am
  @abraham |http://projects.abrah.am|http://blog.abrah.am
  This email is: [ ] shareable [x] ask first [ ] private.




-- 
Abraham Williams | Developer for hire | http://abrah.am
@abraham | http://projects.abrah.am | http://blog.abrah.am
This email is: [ ] shareable [x] ask first [ ] private.