Jump to content
UBot Underground

Eddie

Fellow UBotter
  • Content Count

    208
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by Eddie

  1.  

    try

    clear list(%num)
    set(#i,1,"Global")
    loop(100) {
        add item to list(%num,#i,"Don\'t Delete","Global")
        increment(#i)
    }
    load html($plugin function("Advanced Data Text File.dll", "$nl to br", %num))
    loop($list total(%num)) {
        set(#Num,$plugin function("Advanced Data Text File.dll", "$list random", %num, "-1", 1, "True", "False"),"Global")
        load html("List Total = {$list total(%num)}<br>
    Random = {#Num}")
    }
     
     
     

     

    thank you pash, i know it can set like that, but more complicate, if a function can do, also i need the several number extract from the range to be different and random.

  2. My 2 Cents ..

     

    ----------

     

    Account activity - Keep it real, and try to mix up your activity. don't start following 1000 accounts in a short time.. :) . Go easy on comments and posting - with new accounts.

     

    let your account age a bit and slowly amp up your activity.

     

    Profile - No profile picture and no picture on the wall  - and you can feel the ban hammer coming down. ... 

    also - have a complete profile.

     

    IP connection -This is the most important, esp. when you create a lot of accounts on a single ip that's a big big red flag!

     

    buy dedicated proxies and 1 proxy per account. same proxy - same account - helps a lot.

    if for whatever reason you need to change proxies -use another ip from the same country, region as the original one.

     

    all of the above should help to minimize bans - bans are inevitable! Those guys are smart :)

    great share and advise,thanks!

    when come to ubot,are these important,like useragent,timezone,and the most most important,proxy,proxy,proxy,this is the most difficult one.

  3.  

    First, read again what I said to create and get.

    Then:

    navigate("https://api.instagram.com/oauth/authorize/?client_id={#clientID}&redirect_uri={#redirectURI}&response_type=token&scope=public_content+follower_list+comments+relationships+likes","Wait")

    Get token with this:

    set(#token,$find regular expression($url,"(?<=token\\=).*"),"Global")
    
    I'm using Heopas HTTP plugin, so:
    set(#selfInfo,$plugin function("HeopasCustom.dll", "$Heopas HTTP Get", "https://api.instagram.com/v1/users/self/?access_token={#token}", "", "", "", "", ""),"Global")

    And now you can use this to, for example, search for a user (you must have the username in Sandbox of it returns an error):

    set(#searchUsr,$plugin function("HeopasCustom.dll", "$Heopas HTTP Get", "https://api.instagram.com/v1/users/search?q=someone&access_token={#token}", "", "", "", "", ""),"Global")
    
     

    so if i want to use http post, i need to apply for Instagram api access token, right?( I use aymen's http post plugin, but in his sample code regarding instagram without API)

    and does instagram block me if i make mass follow and like since i use the same access token?

    also what you mean "you must have the username in Sandbox"?

  4. You should create a client here first:

    https://www.instagram.com/developer/

     

    Login with your account, create a client to get Client ID, Client Secret and Redirect URL.

    Put them in the following link:

    https://api.instagram.com/oauth/authorize/?client_id=CLIENT-ID&redirect_uri=REDIRECT-URI&response_type=token

    You will be redirected to the following link and will get token:

    http://your-redirect-uri#access_token=ACCESS-TOKEN

    Now you can use endpoints.

    will try, thank you bud..

×
×
  • Create New...