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
#5
No encoding,as mention so is Requests doing that.
If the url return json,then this should work.
import requests

response = requests.get("http://www.testecliente.com.br/ApiTeste/GetDadosCartaoCliente?CL_COD=1")
# Get json,a json encode/decode is build in
json_data = response.json()
# Should be a dictionary
print(type(json_data_data))
# Look at data
print(json_data)
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 snippsat - Jan-10-2018, 05:14 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

Possibly Related Threads…
Thread Author Replies Views Last Post
  TypeError: string indices must be integers, not 'str' LEMA 2 215 Jun-12-2024, 09:32 PM
Last Post: LEMA
  json loads throwing error mpsameer 8 977 Jan-23-2024, 07:04 AM
Last Post: deanhystad
  boto3 - Error - TypeError: string indices must be integers kpatil 7 1,582 Jun-09-2023, 06:56 PM
Last Post: kpatil
  [split] Parse Nested JSON String in Python mmm07 4 1,708 Mar-28-2023, 06:07 PM
Last Post: snippsat
  Response.json list indices must be integers or slices, not str [SOLVED] AlphaInc 4 6,840 Mar-24-2023, 08:34 AM
Last Post: fullytotal
  json decoding error deneme2 10 4,257 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,274 Feb-11-2023, 07:03 PM
Last Post: deanhystad
  Error "list indices must be integers or slices, not str" dee 2 1,710 Dec-30-2022, 05:38 PM
Last Post: dee
  python requests library .JSON() error mHosseinDS86 6 3,851 Dec-19-2022, 08:28 PM
Last Post: deanhystad
  Read nested data from JSON - Getting an error marlonbown 5 1,568 Nov-23-2022, 03:51 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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