Is there a way to check if a project exists with the Glitch API? When you get api.glitch.com/projects/project, it returns null if the project does not exist. The thing is, it also returns null if the project is private.
So is there a way to check if the project exists at all? I know this is possible because Glitch does it when you type in your project name, but I don’t know how to do it.
You could try sending a boot request to the Glitch api on the specific project. However I don’t remember the pathname for that, I might do some research on that later.
@jenn but it can be kind of identified whether a private project exists or not. When you name a project, if it tells you that the name exists, and when you check glitch.com/~privateproject and the page is not found, it means that a private project with that name exists, right?
So Glitch the platform can do stuff like handling privacy permissions and authorization that a user would not be able to do. I assume that’s what you’re asking about!