Hello Airtable team,
Just stumbled upon a weird error while trying to select rows from a table that has an accented name. (éèà...)
when I do a base.getTable("Accentué").select() it throws a NOT FOUND error. I first suspected that the name should be URLEncoded, which I did: getTable(URLEncoder.encode("Accentué", StandardCharsets.UTF_8)).select() but it hit me with the same error. Can't figure out why. Also, when I do a curl (with and without url encode), it works as expected.
Do you have any ideas ?