Navigation

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

    logiclump

    @logiclump

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

    logiclump Follow

    Best posts made by logiclump

    This user hasn't posted anything yet.

    Latest posts made by logiclump

    • TOTP Login

      Hello Team I want to login with password but its showing

      {
      "status": false,
      "message": "Invalid totp",
      "errorcode": "AB1050",
      "data": null
      }

      My postmain request is

      const axios = require('axios');
      let data = JSON.stringify({
      "clientcode": "M62652979",
      "password": "1122",
      "totp": "OSETRQWV3ID22Z54BVICOPILME",
      "state": "statevariable"
      });

      let config = {
      method: 'post',
      maxBodyLength: Infinity,
      url: 'https://apiconnect.angelone.in/rest/auth/angelbroking/user/v1/loginByPassword',
      headers: {
      'X-PrivateKey': 'D3c8q8qn',
      'Accept': 'application/json',
      'X-SourceID': 'WEB',
      'X-ClientLocalIP': '122.176.157.197',
      'X-ClientPublicIP': '122.176.157.197',
      'X-MACAddress': '122.176.157.197',
      'X-UserType': 'USER',
      'Content-Type': 'application/json',
      'Authorization': '••••••',
      'Cookie': 'TS0179ac75=0167ca9f9b9c6db24b05e234b05ac633a59b67425c9f5076a3dc54a8e6ceda2ea67321aa57b606a973a95482ad801ed29fb83e60fc'
      },
      data : data
      };

      axios.request(config)
      .then((response) => {
      console.log(JSON.stringify(response.data));
      })
      .catch((error) => {
      console.log(error);
      });

      Can you please explain how its happening

      posted in General Discussion
      L
      logiclump
    • Option Chain Data

      Hello Team
      i am working on option chain data but api nnot provide me any kind of data i have already check on postman to van you please sugguest me which kind of mistake i have made for
      Details are

      URL : https://apiconnect.angelbroking.com/rest/secure/angelbroking/historical/v1/getOIData

      Parameters in body raw section
      {
      "exchange": "NFO",
      "symboltoken": "84833",
      "interval": "THREE_MINUTE",
      "fromdate": "2024-09-06 09:15",
      "todate": "2024-09-06 10:30"
      }

      its showing
      400 bad Request

      posted in Bugs
      L
      logiclump