-
Not able to use /n (new line) character. Please HELP!
I am trying to create a dynamic public key which will be used to verify signature.I have written lambda function for that. My code: const EncodedKey = "-----BEGIN PUBLIC KEY-----" + "\r\n" +$var.publicKey + "\r\n" +"-----END PUBLIC KEY-----"; The error: error:0909006C:PEM routines:get_name:no start line Please kindly help…
-
Copy past - additional space before field name
This one is really small ….. like spacebar invisible small When working with filters I like to copy the field name before I build the filter. If i paste then I get the field name….. with a extra space in front of it. That is really annoying. I'm assuming your also working on extending support for dot notation, that would…
-
How Do I Intercept OPTIONS Preflight for CORS?
When a preflight request is made to OPTIONS, I see no way of intercepting that request. I want to be able to set my own headers for CORS purposes. For example, requests that have credentials can't use Xano's default Access-Control-Allow-Origin: *. If I can't set the Access-Control-Allow-Origin to a specific origin, then my…
-
Next.js
Can't connect. video or codepen tutorial would help.
-
System Permission and Permission Sets
Hi everyone, I am developing a SaaS app using Xano and WeWeb. I want to know what the best practice is for establishing a module-based permission system. From a business perspective, customers will be able to choose different package options (basic, full, premium), and each of these packages will have different modules and…
-
Webflow Twitter/X Login Functionality with XANO Twitter Oauth services
Hello developers, I wondered if there is a way to enable (Twitter login) functionality in Webflow using XANO OAuth services. Can you please provide me with the appropriate (JavaScript code) that interacts with XANO's Twitter-provided endpoints? like you've given for Google services within Webflow(ref: YT Video), This will…
-
Offline usage / data sync Xano
Hi all, We are prepping to implement offline usage to our Draftbit app - our BE runs on Xano. To enable offline usage we are considering WatermelonDB. Question now is - who has experience using Xano in combination with a FE that allows offline usage (thus requiring pulling and pushing data to sync FE and BE); Which sync…
-
Access Control Allow Headers
I'm calling my API endpoints from my React web app, and Firefox is giving me this warning: Cross-Origin Request Warning: The Same Origin Policy will disallow reading the remote resource at [Xano Endpoint URL] soon. (Reason: When the Access-Control-Allow-Headers is *, the Authorization header is not covered. To include the…
-
Trouble with Regex pattern
I'm trying to use the following regex pattern to validate phone numbers: /+?\d{1,4}?[-.\s]?(?\d{1,3}?)?[-.\s]?\d{1,4}[-.\s]?\d{1,4}[-.\s]?\d{1,9}/g I works fine on https://regex101.com/ However, the regex_matches filter returns always false. The same problem here. No matter what the input is, returns "the phone number is…
-
Non Break Space (NBSP)
I have a problem importing data from a file where sometimes have a non break space (NBSP or U+00A0 or   or chacode = 160 or \00A0 or ) In the workflow, if i don't use anything related to lambda no problem happens, but the result of the API in postman are with the space. Data in file: SEVE CD LS 20 Data out for…
-
How to reuse a custom Object type?
I've created a custom object as type of clockInMetatada, is there a way to reuse the same object as clockOutMetadata? I feel like I need to redo the whole configuration again from scratch. I need custom reusable data types. I think this is similar to
-
When will xano support webp images?
I'm having trouble navigating around uploading webp images as attachments. It saves the attachment type as empty and makes my front end have problems rendering it.
-
Help! I've hit a brick wall with a bulk update function
Hi. I am completely new to xano and I'm struggling to understand it. I was using adalo for an MVP build but hit a wall because the database functionality in adalo didn't support bulk updates. So I'm hoping I can achieve what I want to do in Xano. My app is essentially a to-do list that will break down a big goal (or…
-
Flutterwave or DPO Payments Integration
Has anyone tried integrating with either Flutterwave or DPO, some guidance would be much appreciated.😃
-
Build a custom sitemap with Xano?
My Bubble website uses Xano to populate all of it's product pages. So for example the URLs look like the following: domain.com/product/565 domain.com/product/985 domain.com/product/1183 domain.com/product/89 When the page is loaded on Bubble, it knows to make an API call to Xano looking for the ID in the URL (So…
-
Creating tagging system in Flutterflow
Hello, I would like to create a tagging system in Flutterflow. For every item in the table there would be string tags to select from the list of custom tags created by the user. The user would be able to create, edit and delete the tags. It would be perfect to filter with any tag also. My idea was to do UI in a form of…
-
Why would a background task not complete when ran as cron but complete when ran manually
I have a task that modifies a list of records. When i run this, it takes 30 seconds, roughly. When it's ran as a cron it wont finish and will sometimes invoke itself several times before finishing any single invocation. the task is relatively simple but you can see here that it runs for long periods of time without…
-
Is it possible to get the most recent record for each group?
Hi everyone! I have a table candidate link to tables order and worker. Each line in this table candidate have different status like: I want to make a query all request filtered by "where order_id = input.order_id" to fetch only the candidates of a specific order. But I want to only have one record per worker_id so I can…
-
Searching for Xano experts from Ukraine!
I recently started a project on Xano and I'm looking for a mentor or consultant to help me get to grips with the tool faster and solve some hot issues. If you have experience with more than one project in Xano and you are from Ukraine, write to me on Telegram or if you have such acquaintances - share the contact. Thanks!…
-
Question about dynamically populating pages.
So I recently realized that rendering data on a page from a backend like xano would result in either a nondescriptive URL path, or an uncrawlable query parameter by search engines. For example, (with a token) example.com/user-profiles example.com/user-profiles?id=239487234987 I've created a marketplace using webflow and…
-
simple query to get a set of search terms
A big challenges of a query is to get useful information from flawed user input.. The fuzzy search tool is really amazing at doing just that. But synonyms and spelling may still present challenges to users especially on mobile devices. I would like to generate a list of words that a user could tap on their screen to…
-
How to correctly save Markdown in Xano Database?
I am trying to save markdown in a textfield in Xano and render it in React with react-markdown. If I copy my markdown into the text field it does not get rendered correctly. If I hardcode the same markdown and use it as input for my Renderer it works just fine. I don't have any filters on the text field in the Database. I…