Page 23 of 27 FirstFirst ... 132122232425 ... LastLast
Results 221 to 230 of 264
  1. #221
    Join Date
    Dec 2007
    Posts
    74
    Plugin Contributions
    0

    Default Re: AutoTweet [support]

    Hi, got this to work and it works great, so thx! But I have a question/request; is it possible to create/add som code so I can chose if I want to update twitter or not?

    For example, this is what I mean (yeh.. photoshop):

    Why? Because I sometimes have a whole serie of products that are the same, but just have different sizes. I dont want to work with product attributes, in our case thats not practical. So one update is actually enough and I dont want followers to leave me because of to many tweets :)
    Attached Images Attached Images  
    Last edited by Ajeh; 19 Oct 2012 at 03:16 PM.

  2. #222
    Join Date
    Aug 2005
    Location
    San Juan, Puerto Rico
    Posts
    1,525
    Plugin Contributions
    9

    Default 401 Unauthorized: Could not authenticate with OAuth.

    I'm having same issue as others:
    Twitter could not be updated: 401 Unauthorized: Could not authenticate with OAuth.
    I've done the reset process and verification 3 times. No success.

    Also I'm having this warning:
    URL was not shortened for Twitter: www.***.com was used instead. Reason: INVALID_LOGIN
    Which was also mentioned by another person.

    The AutoFB works perfectly but not this one.

    May someone give us some light?
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!
    My contributions: SophyBlue / Sophy Blue-Grey / Mistik / The Bookshelf / Dynamic Sideboxes

  3. #223
    Join Date
    Sep 2011
    Location
    Sydney, Australia
    Posts
    48
    Plugin Contributions
    0

    Default Re: 401 Unauthorized: Could not authenticate with OAuth.

    Is anybody currently having problems with this?

  4. #224
    Join Date
    Aug 2005
    Location
    San Juan, Puerto Rico
    Posts
    1,525
    Plugin Contributions
    9

    Default Re: 401 Unauthorized: Could not authenticate with OAuth.

    Quote Originally Posted by wakeleymb View Post
    Is anybody currently having problems with this?
    I am one.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!
    My contributions: SophyBlue / Sophy Blue-Grey / Mistik / The Bookshelf / Dynamic Sideboxes

  5. #225
    Join Date
    Dec 2009
    Posts
    37
    Plugin Contributions
    0

    Default Re: 401 Unauthorized: Could not authenticate with OAuth.

    Quote Originally Posted by ideasgirl View Post
    I'm having same issue as others:


    I've done the reset process and verification 3 times. No success.

    Also I'm having this warning:

    Which was also mentioned by another person.

    The AutoFB works perfectly but not this one.

    May someone give us some light?
    Hi ideasgirl,

    If you created your bitly account using your twitter or facebook account i.e. (Upon going to bitly.com, if you signed up using twitter or facebook) what you'll have to do after account was created on bitly is click on the 'Advanced tab' from settings and look for "Legacy API Key If you already use a bitly API key to grant access to 3rd party applications, you can reset it here. Show legacy API key"
    click on the 'Show legacy API key'
    There you will find you true login and api key, and not that of your username e.g. @twitter_username.

    Hope this helps anyone with that problem

  6. #226
    Join Date
    Jul 2009
    Posts
    110
    Plugin Contributions
    0

    Default Re: AutoTweet [support]

    Is it possible to add the product image to the rest of the info that posts at Twitter? I know you can upload images from your hard drive, but will a link code to the image work, as it does in auto Facebook?

    Thanks,
    Joanne

  7. #227
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: AutoTweet [support]

    Couple questions:

    Has anyone managed to get this mod to work on v1.5.1?
    Hate to admit but I could not.

    Why the use of a 3rd party to shorten URL?
    Twitter has a built in link service. A URL of any length will be altered to 20 characters, even if the link itself is less than 20 characters long. Your character count will reflect this.

    Why grant any service access to your accounts ...

    Has anyone else noticed Twitter changed their API URLS?
    None of the URLS in the twitteroauth.php matched my URLS in the twitter > my applications.

    Just curious

  8. #228
    Join Date
    Dec 2009
    Location
    Richmond, VA
    Posts
    160
    Plugin Contributions
    3

    Default Re: AutoTweet [support]

    Quote Originally Posted by rbarbour View Post
    Couple questions:

    Has anyone managed to get this mod to work on v1.5.1?
    Hate to admit but I could not.

    Why the use of a 3rd party to shorten URL?
    Twitter has a built in link service. A URL of any length will be altered to 20 characters, even if the link itself is less than 20 characters long. Your character count will reflect this.

    Why grant any service access to your accounts ...

    Has anyone else noticed Twitter changed their API URLS?
    None of the URLS in the twitteroauth.php matched my URLS in the twitter > my applications.

    Just curious
    Twitter just forced everyone on v1.0 of the API to use v1.1 (Looks like they started enforcing this today). You will need to switch the twitter library over to the new version to get this working. When I have time I will definitely update the script, however I don't know when that will be. See: https://dev.twitter.com/docs/api/1.1/overview

    As for the 3rd party question, this mod predates twitter's adding of that feature. It used to be if you wanted a URL shortened you need a 3rd party service to do so.

  9. #229
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: AutoTweet [support]

    Quote Originally Posted by jamielife View Post
    Twitter just forced everyone on v1.0 of the API to use v1.1 (Looks like they started enforcing this today). You will need to switch the twitter library over to the new version to get this working. When I have time I will definitely update the script, however I don't know when that will be. See: https://dev.twitter.com/docs/api/1.1/overview

    As for the 3rd party question, this mod predates twitter's adding of that feature. It used to be if you wanted a URL shortened you need a 3rd party service to do so.
    Thank you for clarifying

    Here are the API URLS

    function accessTokenURL() { return 'https://api.twitter.com/oauth/access_token'; }
    function authenticateURL() { return 'https://api.twitter.com/oauth/authenticate'; }
    function authorizeURL() { return 'https://api.twitter.com/oauth/authorize'; }
    function requestTokenURL() { return 'https://api.twitter.com/oauth/request_token'; }

    I have this working now, however I use my own code in update_products.php so I can choose too or not too send new product tweets, choose too include or exclude products price, choose too or not too send product update tweets and include hash tags.

    I am new to twitter but I guess we all are or were at some point.

  10. #230
    Join Date
    Jul 2009
    Posts
    110
    Plugin Contributions
    0

    Default Re: AutoTweet [support]

    Quote Originally Posted by rbarbour View Post
    Thank you for clarifying

    Here are the API URLS

    function accessTokenURL() { return 'https://api.twitter.com/oauth/access_token'; }
    function authenticateURL() { return 'https://api.twitter.com/oauth/authenticate'; }
    function authorizeURL() { return 'https://api.twitter.com/oauth/authorize'; }
    function requestTokenURL() { return 'https://api.twitter.com/oauth/request_token'; }

    I have this working now, however I use my own code in update_products.php so I can choose too or not too send new product tweets, choose too include or exclude products price, choose too or not too send product update tweets and include hash tags.

    I am new to twitter but I guess we all are or were at some point.
    Where do those new codes go?? I'd love to fix this for myself if I could, so I don't have to wait :) Also, would there be any way of changing the code so that the picture would also be put in the post??

 

 
Page 23 of 27 FirstFirst ... 132122232425 ... LastLast

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  2. v151 Autotweet Errors/Not Posting
    By Little Red Crane in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 13 Mar 2014, 04:56 PM
  3. is there any AutoTweet addon or autofacebook addon work well with EasyPopulate?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 5 Dec 2010, 03:17 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR