Wix modules not working returning 404

I followed the steps on the Make website but for some reason when i run the module it returns a 404. the weird thing is that the connection is fine and i can even verify it. only in the module itself i get this error.

here is the module:

here’s the error:

i gave almost every permission possible after the ones on the guide didn’t work… nothing.

example:


the links in my OAuth are like in the guide as well:

and my app is installed in my website:

PLEASE HELP

Welcome to the Make community!

For technical issues or bugs like this, directly contacting support can often lead to a faster resolution. They have access to your specific account details, scenario and scenario logs, server-side logs, and internal tools and resources, which allows them to investigate more thoroughly than what you have access to. Additionally, sharing sensitive information about your account or scenario might not be suitable for an open forum discussion.

You can open a new ticket here, or if you are unable to login for some reason, you can create another new free account to access the ticketing system (which is only available to logged-in users). Alternatively, you should be able to send an email to helpdesk@make.com and support@make.com and it should create a ticket. After submitting a new ticket, you will receive an automatic confirmation email with the subject “Ticket Created” in the subject. If you do not receive this, try sending the ticket again.

If you manage to get your issue resolved with support, we’d still love to hear about it! Sharing your solution on the forum can help others facing similar problems.

Hope this helps! Let me know if there are any further questions or issues.

@samliew


P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!

FOUND WORKAROUND

i managed to use the API using HTTP call and API KEY.

first, i created an api key here: https://manage.wix.com/account/api-keys

MAKE SURE TO SAVE IT SOMEWHERE BECAUSE YOU ONLY SEE THIS ONCE

then you need 2 more things:

  1. Account ID
  2. Site ID

#1 you get from the same page of “API Keyes”:

#2 you get from your website’s URL:

Now you have everything to use the HTTP call to use wix operations in your make/integromat scenarios

Example on a get request for contact lables (to get lable keyes):

Choose HTTP Module:

Then “Make A Request”:

Paste the URL from the wix API (in this example, it’s https://www.wixapis.com/contacts/v4/labels)

Now, you want to add 3 headers (on every HTTP module calling to the wix API):

  1. Name = Authorization , Value = YOURAPIKEY
    image

  2. Name = wix-site-id , Value = YOURSIDEID

  3. Name = wix-account-id , Value = YOURACCOUNTID
    image

In this example we won’t use any body or query params.

So if you did all the above, you should have a successful run and get the lables like this:

I thank the random programmer in my automation online course for helping me crack this. it worked for me and i hope it works for more people.

Because neither the wix/make support or forums produced solutions. Hopefully now there is a defenitive one now :slight_smile:

6 Likes

I wish all the answers are as instructive and easy to follow like this answer.

1 Like