Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
gatsby-source-marketo-forms
Advanced tools
Plugin to fetch forms data from marketo platform and create a gatsby data query
npm install gatsby-source-marketo-forms
yarn add gatsby-source-marketo-forms
You'll need to create credentials for the marketo API. All instruction how to create those keys you will find in this link -> http://developers.marketo.com/rest-api/authentication/
Go to gatsby-config
and add the following lines to the config
{
resolve: 'gatsby-source-marketo',
options: {
munchkinId: MUNCHKIN_ID_KEY,
clientId: 'CLIENT_ID_KEY',
clientSecret: CLIENT_SECRET_KEY',
maxReturn: Specify how many forms should be returned (optional, type: number)
}
}
And that's it. To explore your marketo forms data go to -> /__graphql
Sample of query
query MarketoQuery {
allMarketoForm {
edges {
node {
marketoId
marketoChildren {
dataType
hintText
id
label
}
}
}
}
}
And a tip for the end. If you wanna use this to avoid AdBlock issue you can use this URL -> https://<YOUR MARKETO SPACE ID>.mktoedge.com/index.php/leadCapture/save2
to send form data instead of http://app-<YOUR MARKETO SPACE ID>.marketo.com/index.php/leadCapture/save
because AdBlock is blocking requests which having some words in URL like marketo
app-<YOUR MARKETO SPACE ID>.marketo.com
is a wrapper for <YOUR MARKETO SPACE ID>.mktoedge.com
so it's works exactly this same
FAQs
Fetch marketo forms data to gatsby project
The npm package gatsby-source-marketo-forms receives a total of 4 weekly downloads. As such, gatsby-source-marketo-forms popularity was classified as not popular.
We found that gatsby-source-marketo-forms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.