如何让 Figma API 与 Google 应用程序脚本 API 一起工作?
How do I get Figma API to work with the Google App-script API?
我正在考虑使用 Google App Script 创建一个 google 幻灯片到 Figma 导出器。首先,我想将在 google Slides 中创建的形状路由到 figma。我将如何设置我的文件?而且我不知道如何在 Google 和 Figma 之间设置 Oauth api 通信,或者是否可能。
我相信我可以开始:
参考资料
Figma 参考资料
https://github.com/figma/plugin-samples/blob/master/react/src/code.ts
google 应用脚本参考
https://github.com/gsuitedevs/apps-script-samples/blob/master/slides/style/style.gs#L30
获取 Figma 形状
var file=projectid.key()
var=figma rectangle= file()
await figma.loadFontAsync({ family: "Roboto", style: "Regular" })
name;
var figmaShape = {
figma.ui.onmessage = msg => {
if (msg.type === 'create-rectangles') {
const nodes = []
for (let i = 0; i < msg.count; i++) {
const rect = figma.createRectangle()
rect.x = i * 150
rect.fills = [{type: 'SOLID', color: {r: 1, g: 0.5, b: 0}}]
figma.currentPage.appendChild(rect)
nodes.push(rect)
}
figma.currentPage.selection = nodes
figma.viewport.scrollAndZoomIntoView(nodes)
}
figma.closePlugin()
}
};
获取 Google 文档文件形状
var powerpointfile = driveApp.getFileById = ("### Slide file ID ###")
function powerPointShape = () {
var slide = SlidesApp.getActivePresentation().getSlides()[0];
var shape = slide.insertShape(SlidesApp.ShapeType.TEXT_BOX, 100, 200, 300,
getObjectId.element(SHAPE);
};
创建新的 Figma 文件#
file.getSlides.shape = (powerPointShape, ) => {
this.powerPointShape.getRigh()=this.figmaShape(rect.x);
this.powerPointShape.getleft()=this.figmaShape(rect.y);
}
但是我还想从那里获取文件 ID 从 google 应用程序脚本到 Figma 文件吗?
看了之后:https://github.com/alyssaxuu/figma-to-google-slides/blob/master/Chrome%20Extension/background.js 我想知道我是否必须创建一个 chrome 扩展或 google 幻灯片插件。
这个答案怎么样?
问题和解决方法:
不幸的是,Google 幻灯片的形状似乎无法放入 Figma 文件的页面。因为好像没有API的方法放形状。但是发现使用Figma可以将Figma文件的页面检索为图片 API.
在这个答案中,我想提出一个示例脚本,即可以使用 Figma API 和访问令牌将 Figma 文件的页面作为图像放入 Google 幻灯片。所以你可以直接使用 Figma API 和 Google Apps 脚本。
用法:
1。检索访问令牌
您可以在here看到获取访问令牌的方法。虽然也有用于检索访问令牌的 OAuth2,但在您的情况下,我认为直接在站点上生成访问令牌的方法可能是合适的。所以在这个答案中,使用了网站上生成的访问令牌。请按如下方式检索访问令牌。
Generate a personal access token
- Login to your Figma account.
- Head to the Account Settings from the top-left menu inside Figma.
- Find the Personal Access Tokens section.
- Click Create new token.
- A token will be generated. This will be your only chance to copy the token, so make sure you keep a copy of this in a secure place.
访问令牌类似于 #####-########-####-####-####-############
。在 Google Apps 脚本中,授权由 headers: {"X-Figma-Token": accessToken}
完成。
2。检索文件密钥
为了使用 Figma API 检索 Figma 文件,需要文件密钥。您可以从文件的 URL 中检索文件密钥。
文件的 URL 就像 https://www.figma.com/file/###/sampleFilename
。在这种情况下,###
是文件密钥。
3。 运行 脚本
示例脚本如下。在你运行脚本之前,请设置accessToken
和fileKey
的变量。
function myFunction() {
var accessToken = "###"; // Please set your access token.
var fileKey = "###"; // Please set the file key.
var baseUrl = "https://api.figma.com/v1";
var params = {
method: "get",
headers: {"X-Figma-Token": accessToken},
muteHttpExceptions: true,
};
var fileInfo = JSON.parse(UrlFetchApp.fetch(baseUrl + "/files/" + fileKey, params));
var children = JSON.parse(UrlFetchApp.fetch(baseUrl + "/images/" + fileKey + "?format=jpg&scale=3&ids=" + fileInfo.document.children.map(function(c) {return c.id}).join(","), params));
if (!children.err) {
var s = SlidesApp.create("sampleSlide");
var slide = s.getSlides()[0];
var keys = Object.keys(children.images);
keys.forEach(function(c, i) {
slide.insertImage(children.images[c]);
if (i != keys.length - 1) slide = s.insertSlide(i + 1);
})
} else {
throw new Error(children);
}
}
- 当
myFunction()
为运行时,首先使用文件键fileKey
检索文件信息。然后,从检索到的文件信息中检索所有页面,并将检索到的页面放入新Google个幻灯片的每个幻灯片中。
- 我认为此脚本的操作类似于您问题底部显示的 the script。
注:
- 这是一个示例脚本。所以请根据自己的实际情况修改。
参考文献:
如果我误解了您的问题并且这不是您想要的方向,我深表歉意。
我正在考虑使用 Google App Script 创建一个 google 幻灯片到 Figma 导出器。首先,我想将在 google Slides 中创建的形状路由到 figma。我将如何设置我的文件?而且我不知道如何在 Google 和 Figma 之间设置 Oauth api 通信,或者是否可能。
我相信我可以开始:
参考资料
Figma 参考资料
https://github.com/figma/plugin-samples/blob/master/react/src/code.ts
google 应用脚本参考
https://github.com/gsuitedevs/apps-script-samples/blob/master/slides/style/style.gs#L30
获取 Figma 形状
var file=projectid.key()
var=figma rectangle= file()
await figma.loadFontAsync({ family: "Roboto", style: "Regular" })
name;
var figmaShape = {
figma.ui.onmessage = msg => {
if (msg.type === 'create-rectangles') {
const nodes = []
for (let i = 0; i < msg.count; i++) {
const rect = figma.createRectangle()
rect.x = i * 150
rect.fills = [{type: 'SOLID', color: {r: 1, g: 0.5, b: 0}}]
figma.currentPage.appendChild(rect)
nodes.push(rect)
}
figma.currentPage.selection = nodes
figma.viewport.scrollAndZoomIntoView(nodes)
}
figma.closePlugin()
}
};
获取 Google 文档文件形状
var powerpointfile = driveApp.getFileById = ("### Slide file ID ###")
function powerPointShape = () {
var slide = SlidesApp.getActivePresentation().getSlides()[0];
var shape = slide.insertShape(SlidesApp.ShapeType.TEXT_BOX, 100, 200, 300,
getObjectId.element(SHAPE);
};
创建新的 Figma 文件#
file.getSlides.shape = (powerPointShape, ) => {
this.powerPointShape.getRigh()=this.figmaShape(rect.x);
this.powerPointShape.getleft()=this.figmaShape(rect.y);
}
但是我还想从那里获取文件 ID 从 google 应用程序脚本到 Figma 文件吗?
看了之后:https://github.com/alyssaxuu/figma-to-google-slides/blob/master/Chrome%20Extension/background.js 我想知道我是否必须创建一个 chrome 扩展或 google 幻灯片插件。
这个答案怎么样?
问题和解决方法:
不幸的是,Google 幻灯片的形状似乎无法放入 Figma 文件的页面。因为好像没有API的方法放形状。但是发现使用Figma可以将Figma文件的页面检索为图片 API.
在这个答案中,我想提出一个示例脚本,即可以使用 Figma API 和访问令牌将 Figma 文件的页面作为图像放入 Google 幻灯片。所以你可以直接使用 Figma API 和 Google Apps 脚本。
用法:
1。检索访问令牌
您可以在here看到获取访问令牌的方法。虽然也有用于检索访问令牌的 OAuth2,但在您的情况下,我认为直接在站点上生成访问令牌的方法可能是合适的。所以在这个答案中,使用了网站上生成的访问令牌。请按如下方式检索访问令牌。
Generate a personal access token
- Login to your Figma account.
- Head to the Account Settings from the top-left menu inside Figma.
- Find the Personal Access Tokens section.
- Click Create new token.
- A token will be generated. This will be your only chance to copy the token, so make sure you keep a copy of this in a secure place.
访问令牌类似于 #####-########-####-####-####-############
。在 Google Apps 脚本中,授权由 headers: {"X-Figma-Token": accessToken}
完成。
2。检索文件密钥
为了使用 Figma API 检索 Figma 文件,需要文件密钥。您可以从文件的 URL 中检索文件密钥。
文件的 URL 就像 https://www.figma.com/file/###/sampleFilename
。在这种情况下,###
是文件密钥。
3。 运行 脚本
示例脚本如下。在你运行脚本之前,请设置accessToken
和fileKey
的变量。
function myFunction() {
var accessToken = "###"; // Please set your access token.
var fileKey = "###"; // Please set the file key.
var baseUrl = "https://api.figma.com/v1";
var params = {
method: "get",
headers: {"X-Figma-Token": accessToken},
muteHttpExceptions: true,
};
var fileInfo = JSON.parse(UrlFetchApp.fetch(baseUrl + "/files/" + fileKey, params));
var children = JSON.parse(UrlFetchApp.fetch(baseUrl + "/images/" + fileKey + "?format=jpg&scale=3&ids=" + fileInfo.document.children.map(function(c) {return c.id}).join(","), params));
if (!children.err) {
var s = SlidesApp.create("sampleSlide");
var slide = s.getSlides()[0];
var keys = Object.keys(children.images);
keys.forEach(function(c, i) {
slide.insertImage(children.images[c]);
if (i != keys.length - 1) slide = s.insertSlide(i + 1);
})
} else {
throw new Error(children);
}
}
- 当
myFunction()
为运行时,首先使用文件键fileKey
检索文件信息。然后,从检索到的文件信息中检索所有页面,并将检索到的页面放入新Google个幻灯片的每个幻灯片中。 - 我认为此脚本的操作类似于您问题底部显示的 the script。
注:
- 这是一个示例脚本。所以请根据自己的实际情况修改。
参考文献:
如果我误解了您的问题并且这不是您想要的方向,我深表歉意。