Gaurav Chadha
Gaurav Chadha
BRBuildShip + Rowy
Created by Jared on 9/12/2024 in #💬・general
Jared - Hi. I'm using webflow to build the app ...
thanks for sharing video @Jared, it seems when you add memberstack, the webflow submit button is no more connected to BuildShip endpoint, could you please check, on clicking submit it is actually hitting the buildship endpoint of your workflow or not?
5 replies
BRBuildShip + Rowy
Created by jamelo#2709 on 7/14/2024 in #❓・buildship-help
Hello, how do I use npm packages in buildship, how do I install them? For example, I need to use Pu
could you try using some other package? As this one requires additional dependency which is not supported to be imported in ES6 format eg: import name from package
18 replies
BRBuildShip + Rowy
Created by Ricky on 9/15/2024 in #💬・general
Ricky - Hi, Have a good weekend!I wish all mem...
You need ship your workflow and make request to the endpoint with path variable
9 replies
BRBuildShip + Rowy
Created by Ricky on 9/15/2024 in #💬・general
Ricky - Hi, Have a good weekend!I wish all mem...
This won't work in test
9 replies
BRBuildShip + Rowy
Created by Ricky on 9/15/2024 in #💬・general
Ricky - Hi, Have a good weekend!I wish all mem...
Hi @Ricky, For the path variable (parametrized request) - you can indeed include a path variable in the REST API trigger on Buildship, you can define a dynamic part of the path using a named parameter (often called a wildcard or path variable). Here's how you can set this up: In the REST API trigger configuration, you specify the Path and Method. For dynamic paths, you can use a named parameter by prefixing it with a colon. For instance: Path: /api/call/:id if a request is made to a URL like - https://6dk2jv.buildship.run/api/call/:123 , the workflow associated with this path will be triggered. The variable part, 123, is captured by :id. You can access/retrieve this variable within your workflow using the request.path object. To extract the conversationId from the path, you could use the following expression within your workflow's expression editor: request.path.split('/')[3] This will retrieve the conversation ID from the path, which in your example would yield 123. Sample Remix you can use - https://buildship.app/remix/c060337f-549c-4ec6-b992-68fd8d38f854
9 replies
BRBuildShip + Rowy
Created by Chris Wright | Brandmember on 9/14/2024 in #💬・general
Chris Wright | Brandmember - Can I share a simp...
Hey @Chris Wright | Brandmember, soon you'll be able too to submit via app. For now you can submit your node to the community via this form - https://buildship.com/community
1 replies
BRBuildShip + Rowy
Created by HandsomeBoy on 9/13/2024 in #💬・general
HandsomeBoy - I'm looking for someone to work w...
@HandsomeBoy, you can connect with our verified BuildShip Experts here - https://contra.com/buildship
1 replies
BRBuildShip + Rowy
Created by Vito_Corleone on 9/11/2024 in #💬・general
Vito_Corleone - Hi new to buildship , when crea...
It is for authenticating and validating the user, For logging and singups you need to handle it from frontend.
11 replies
BRBuildShip + Rowy
Created by jamelo#2709 on 7/14/2024 in #❓・buildship-help
Hello, how do I use npm packages in buildship, how do I install them? For example, I need to use Pu
Hey @robot007, you can install npm package using named import methods - import any npm package using Named import declaration. Example: import module from "module-name"; &import Crypto from 'crypto'; Best way is to generate with AI - https://docs.buildship.com/ai-nodes
18 replies
BRBuildShip + Rowy
Created by Jared on 9/12/2024 in #💬・general
Jared - Hi. I'm using webflow to build the app ...
Hi @Jared, you can checkout this tutorial on how to get the form values using webflow https://www.youtube.com/watch?v=MslmqyII7fQ, and to integrate memberstack, you can generate a node with AI using Memberstack APIs https://docs.buildship.com/ai-nodes you can start with this, and share if you get into any blockers, we can help you further achieve your goal
5 replies
BRBuildShip + Rowy
Created by Vito_Corleone on 9/11/2024 in #💬・general
Vito_Corleone - Hi new to buildship , when crea...
yeah, because both triggers are different, did checked out the docs share firestore auth?
11 replies
BRBuildShip + Rowy
Created by Brian on 9/10/2024 in #❓・buildship-help
Cannot access looped Node items if they were failing (undefined)
@Brian we are now tracking this as an issue, seems to be an issue with accessing undefined values, we'll update you on the fix.
8 replies
BRBuildShip + Rowy
Created by Vito_Corleone on 9/11/2024 in #💬・general
Vito_Corleone - Hi new to buildship , when crea...
In the video the test is only made using on the 2nd node to create user, not with the trigger, if you are using the trigger node (first one), you'll require to use authorization token, as in flutterflow you need to call the entire endpoint. if you want to skip the autoriraztion token, you can use a rest api trigger instead, but for a secure and better way, it recommended to use firebase auth trigger, you can refer to the shared documentation on how to generate token.
11 replies
BRBuildShip + Rowy
Created by Joy on 9/12/2024 in #❓・buildship-help
Whisper chat
@Joy, you can checkout this video - https://www.youtube.com/watch?v=crdcZNnQGDo as a best example of a voice chat app with flutterflow
5 replies
BRBuildShip + Rowy
Created by FLKyle on 9/12/2024 in #💬・general
FLKyle - Hi all! I'm new to buildship..I'm tryi...
Hi @FLKyle, Use a cron to check the specific workflow execution instead - https://docs.buildship.com/trigger-nodes/scheduled-cron as 13 days delay isn't an ideal case and is not feasible.
2 replies
BRBuildShip + Rowy
Created by Al_B on 9/11/2024 in #❓・buildship-help
CORS Issue from FlutterFlow
@Al_B The issue here seems is how the request is made from client side (FlutterFlow) as this occurs if they call external endpoint, which blocks access-control, you can try include Access-Control-Allow-Origin containing domain name in the headers of the API Call, if your are making a request to external endpoint which is giving CORS issue. cc @Stu
10 replies