Недавний контент tsuna123

  1. T

    reCAPTCHA v2 Android

    hey thanks for the reply but i found a different entry point for the site which doesnt require andrioid captcha anymore, also i couldnt find any captcha services that solves it
  2. T

    Solving reCAPTCHA v2 Android

    is there any way to solve reCAPTCHA v2 Android via sitekey method? For example a recaptcha set up like this: sitekey: 6Le2gqEUAAAAAD0zdvosLqqZXRpVoM6hcqxLcpxX package: com.test.app When i send the request with package name in page url parameters it always return as invalid domain or timeout
  3. T

    reCAPTCHA v2 Android

    is there any way to solve reCAPTCHA v2 Android via sitekey method? For example a recaptcha set up like this: sitekey: 6Le2gqEUAAAAAD0zdvosLqqZXRpVoM6hcqxLcpxX package: com.test.app When i send the request with package name in page url parameters it always return as invalid domain or timeout
  4. T

    Uploading files with HTTP PUT

    it says that the method only takes string as a content type, how do i upload bytes to the link?
  5. T

    Uploading files with HTTP PUT

    i tried running that code but is is not runable, this is what is says in the log " Compile code of Error in action "CS0103" "The name 'imageBytes' does not exist in the current context". [Row: 9; Column: 1] " byte[] imageBytes; string Url =...
  6. T

    Uploading files with HTTP PUT

    @VladZen please help me with this last part ive been trying for a while but no luck
  7. T

    Uploading files with HTTP PUT

    hi thanks, i already have converted the image into bytes but im not sure how to add it into the PUT request
  8. T

    Uploading files with HTTP PUT

    can you show me how i can take a image link convert to Bytes and upload it using the PUT request like the one u showed above ? im trying this but its not working, i already imported all references/dll needed for webclient, only issue is HTTP PUT
  9. T

    Uploading files with HTTP PUT

    Sorry im kinda noob at this, not sure what that means or how to find out
  10. T

    Uploading files with HTTP PUT

    Thanks for the help but i dont think its working for me... When i check the request traffic, this is what the request body looks like when i do it on the website This is what the request body looks like when i try it with the code Doesnt look like the file is being chosen properly? Also...
  11. T

    Uploading files with HTTP PUT

    How do i use HTTP PUT to upload files? Im using C# code to send the request var response = ZennoPoster.HTTP.Request(ZennoLab.InterfacesLibrary.Enums.Http.HttpMethod.PUT, "link", "", "application/x-www-form-urlencoded", instance.GetProxy(), ""...