Python Forum
Error string indice must integers Json
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error string indice must integers Json
#9
Are you sure the code below is the one which is causing the error?

response = requests.get("http://www.testecliente.com.br/ApiTeste/GetDadosCartaoCliente?CL_COD=1" )
retorno = response.content
retorno = retorno.decode("utf-8")
json_data = json.loads(retorno)
CL_NOME = json_data['CL_NOME']
print ("NOME=" + CL_NOME)
I'm asking because in your GET request you are sending CL_COD=1, but when you say you print json_data it shows CL_COD = 40

If you place the entire code, might be helpfull
Reply


Messages In This Thread
Error string indice must integers Json - by ALEGON - Jan-10-2018, 10:11 AM
RE: Error string indice must integers Json - by mpd - Jan-10-2018, 02:38 PM
RE: Error string indice must integers Json - by mpd - Jan-10-2018, 05:14 PM
RE: Error string indice must integers Json - by mpd - Jan-10-2018, 06:27 PM
RE: Error string indice must integers Json - by lghauth - Jan-10-2018, 07:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  json loads throwing error mpsameer 8 823 Jan-23-2024, 07:04 AM
Last Post: deanhystad
  boto3 - Error - TypeError: string indices must be integers kpatil 7 1,377 Jun-09-2023, 06:56 PM
Last Post: kpatil
  [split] Parse Nested JSON String in Python mmm07 4 1,629 Mar-28-2023, 06:07 PM
Last Post: snippsat
  Response.json list indices must be integers or slices, not str [SOLVED] AlphaInc 4 6,622 Mar-24-2023, 08:34 AM
Last Post: fullytotal
  json decoding error deneme2 10 3,992 Mar-22-2023, 10:44 PM
Last Post: deanhystad
  "TypeError: string indices must be integers, not 'str'" while not using any indices bul1t 2 2,137 Feb-11-2023, 07:03 PM
Last Post: deanhystad
  Error "list indices must be integers or slices, not str" dee 2 1,546 Dec-30-2022, 05:38 PM
Last Post: dee
  python requests library .JSON() error mHosseinDS86 6 3,642 Dec-19-2022, 08:28 PM
Last Post: deanhystad
  Read nested data from JSON - Getting an error marlonbown 5 1,483 Nov-23-2022, 03:51 PM
Last Post: snippsat
  TypeError: string indices must be integers JonWayn 12 3,613 Aug-31-2022, 03:29 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020