Check if twitter username exists

前端 未结 9 1604
旧巷少年郎
旧巷少年郎 2021-02-05 10:28

Is there a way to check if a twitter username exists? Without being authenticated with OAuth or the twitter basic authentication?

9条回答
  •  野的像风
    2021-02-05 10:50

    You can also use the API with username :

    eg : http://api.twitter.com/1/users/show.xml?screen_name=tarnfeld

    Will give you :

    
    
      ...................
      tarnfeld
      Portsmouth, UK
      .................
      
    
    

    Or if not exist :

    
    
      /1/users/show.xml?screen_name=tarnfeldezf
      Not found
    
    

提交回复
热议问题