metaimg homepagemetaimg

Playground

Documentation

Integrations

Learn how to integrate your app with metaimg

Integrating with metaimg

metaimg provides an API development toolchain aimed at integrating with your workflow. The metaimg team develops an open ecosystem in conjunction with industry partners to build integrations that facilitate your API projects. Integrations allow you to automate sharing data and functionality between Postman and other tools you might use for your API development.

Accessing integrations

You can access integrations by navigating to Browse Integrations from your Home page and selecting "Integrations" from the menu on the left. Search and select the integration you wish to add to your workspace.

Nextjs
metaimg provides an API development toolchain aimed at integrating with your workflow. The metaimg team develops an open ecosystem in conjunction with.
Learn more
Gatsby
metaimg provides an API development toolchain aimed at integrating with your workflow. The metaimg team develops an open ecosystem in conjunction with.
Learn more
Laravel
metaimg provides an API development toolchain aimed at integrating with your workflow. The metaimg team develops an open ecosystem in conjunction with.
Learn more
Webflow
metaimg provides an API development toolchain aimed at integrating with your workflow. The metaimg team develops an open ecosystem in conjunction with.
Learn more
Magento
metaimg provides an API development toolchain aimed at integrating with your workflow. The metaimg team develops an open ecosystem in conjunction with.
Learn more
Prestashop
metaimg provides an API development toolchain aimed at integrating with your workflow. The metaimg team develops an open ecosystem in conjunction with.
Learn more

Installed apps

Adding an integration requires you to authenticate with the third-party app or service you are connecting to Postman. For supported integrations, you can store the authorization details in an installed app. Anyone on your team can then use the installed app to add a new integration, instead of authenticating with their own credentials.

class MarkdownEditor extends React.Component {
constructor(props) {
super(props);
this.md = new Remarkable();
this.handleChange = this.handleChange.bind(this);
this.state = { value: 'Hello, **world**!' };

Important globals

Create a new Flyyer app using create-metaimg, which sets up everything automatically for you. To start a deck follow the steps below.

class MarkdownEditor extends React.Component {
constructor(props) {
super(props);
this.md = new Remarkable();
this.handleChange = this.handleChange.bind(this);
this.state = { value: 'Hello, **world**!' };

Conclusion

Social images are a great way to introduce users to a link on your website, before they even click on it. Remix makes dynamically generating images and adding it to your website much simpler compared to other React frameworks. By generating images using the canvas library, we can add lots of dynamic behavior to our images, in combination with the power that Remix gives us to control how it gets accessed and cached.

Static IP support

You can use static IP addresses to enable integrations and custom webhooks for Postman Collection backups that need to access hosted (private) networks behind firewalls that require IP addresses from an allowlist.

const scaleUp = keyframes({
'0%': { transform: 'scale(1)' },
'100%': { transform: 'scale(1.5)' },
});
const Button = styled('button', {
'&:hover': {
animation: `${scaleUp} 200ms`,
},
});