Navigation

    SmartAPI Forum
    • Register
    • Login
    • Search
    • Categories
    • Popular
    • Groups
    • FAQs
    • API Docs
    1. Home
    2. Santoshanand
    S
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Santoshanand

    @Santoshanand

    0
    Reputation
    3
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Santoshanand Follow

    Best posts made by Santoshanand

    This user hasn't posted anything yet.

    Latest posts made by Santoshanand

    • RE: Unable to connect api using golang

      @GudHelp

      You can use this code

      func getPublicIp() (string, error) {
      	resp, err := http.Get("https://myexternalip.com/raw")
      	if err != nil {
      		return "", err
      	}
      	content, _ := ioutil.ReadAll(resp.Body)
      	err = resp.Body.Close()
      	if err != nil {
      		return "", err
      	}
      	return string(content), nil
      }
      
      posted in Go SDK
      S
      Santoshanand
    • RE: Redirect URL

      @Moderator_1

      Is there any way to test login on local machine?

      posted in General Discussion
      S
      Santoshanand
    • Invalid Totp

      Unable to generate session using golang sdk.

      session, err := ABClient.GenerateSession("totp here")
      

      In error i am getting Invalid TOTP

      478f1117-b1d3-4df2-a442-0d602ffd58ba-image.png

      posted in Go SDK
      S
      Santoshanand