- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我公司在 Trello(私有(private)看板)上有一个当前项目列表,我们很乐意通过连接到看板在我们的网站上显示它们,以便它们始终是最新的。
使用 this example ,我现在可以提取卡片并将它们呈现在页面上,但前提是您单击“连接到 Trello”。
为什么用户需要连接?它们是我的板卡上的我的卡片,所以有没有办法……给他们看卡片(它们只需要是只读的……用户不能编辑/与它们交互)? Trello 应该只需验证我,而不是我网站的访问者。
有代码解决方案吗?
这是我当前的 JS 片段:
<script src="https://api.trello.com/1/client.js?key=[MY-APP-KEY]"></script>
<script>
var onAuthorize = function() {
updateLoggedIn();
$("#projects").empty();
Trello.members.get("me", function(member){
var $item = "<tr><td class='subhead disabled'>Loading projects...</td></tr>";
$("#projects").html($item);
// Output a list of all of the cards that the member
// is assigned to
Trello.lists.get("[MY-TRELLO-LIST-ID]/cards", function(cards) {
$("#projects").html("");
$item = "";
$.each(cards, function(ix, card) {
// OUTPUT THEM ON THE PAGE
$("#projects").append($item);
});
});
});
};
var updateLoggedIn = function() {
var isLoggedIn = Trello.authorized();
$("#loggedout").toggle(!isLoggedIn);
$("#loggedin").toggle(isLoggedIn);
};
var logout = function() {
Trello.deauthorize();
updateLoggedIn();
};
Trello.authorize({
interactive:false,
success: onAuthorize
});
</script>
最佳答案
在网上搜索后,我在 HappyPorch 的优秀团队中找到了一个很好的解决方案。
来自 HappyPorch 的 Ondrej 的电子邮件线程:
The high-level overview is as follows:
You need a Trello account that has access to the board(s). You can use your personal one, or create a "service account" to keeps things (permissions) isolated.
You need to create a small admin app using the Trello API, which will prompt for the login, and request an access token. You will see a login dialog, you will log in with the desired (service) account. Then, using the Javascript API, you will extract the security token.
In your real application you will use the Trello API again. Instead of prompting for login though, you will set the token you previously extracted; the users will then interact with Trello API on behalf of the account that was used to generate the token.
用例是您拥有您只想向某人展示的看板,因此他们(用户...您网页的访问者...任何人)没有理由必须对任何内容进行身份验证,更不用说甚至需要一个 Trello 帐户。它们是您的看板,因此 Trello 只需要验证您是否有权访问...而不是其他任何人。
根据 HappyPorch 的教程,我创建了一个很小的 authenticate.html 页面,否则它是空的。我访问此页面一次以验证服务帐户并通过将其打印到控制台来获取 token 。
authenticate.html
<html><head></head><body>
<script src="https://api.trello.com/1/client.js?key=APP-KEY-FOR-SERVICE ACCOUNT"></script> <!-- Get yours here https://trello.com/app-key -->
<script>
// Obtain the token
var authenticationSuccess = function () {
var TOKEN = Trello.token();
console.log(TOKEN);
};
var authenticationFailure = function () {
alert("Failed authentication");
};
// Force deauthorize
Trello.deauthorize();
Trello.authorize({
name: "Preauthorize a Shared Service Account",
scope: {
read: true,
write: true
},
type: "popup",
expiration: "never",
persist: false,
success: authenticationSuccess,
error: authenticationFailure
});
</script>
</body></html>
一旦您从您的微型身份验证应用程序获得 token ,您现在就可以在您想要显示您的 Trello 卡片的任何页面上使用它。如果您使用 Trello 的 client.js 方法执行此操作,请使用您打印到控制台的 token 并在下面设置 token 。
// USING THE STORED TOKEN (ON EACH PAGE YOU WANT TO DISPLAY BOARDS)
Trello.setToken('THE_TOKEN');
Trello.get("members/me/cards", function(cards) {
$cards.empty();
$.each(cards, function(ix, card) {
$("<a>")
.attr({href: card.url, target: "trello"})
.addClass("card")
.text(card.name)
.appendTo($cards);
});
});
上面的代码片段来自this jsFiddle ,但我只是展示 token 如何适应从 Trello 提取数据的流程。
是的,你是对的。这就是为什么最好在服务器端执行此操作。
因此,我使用 this small Trello PHP wrapper帮助我完成服务器端的所有工作。
这是我想要显示我的 Trello 卡片的页面的样子。在下面的例子中,我从一个特定的列表中提取。如果您要查找自己的 listID,请查看 Section 3 on this page .
wherever-you-want-to-show-cards.php
<?php
include "PATH-TO/Trello.php"; // Trello.php is from the PHP wrapper mentioned above
$key = "SERVICE-ACCOUNT-APP-KEY"; // get yours at https://trello.com/app-key
$token = "TOKEN-YOU-GOT-FROM-YOUR-TINY-AUTHENTICATE.HTML-APP";
$trello = new \Trello\Trello($key, null, $token);
foreach($trello->lists->get("YOUR-LIST-ID/cards") as $card) {
echo($card->name." | ".$card->url."\n");
}
?>
创建一个新的 Trello“服务”帐户,您可以将其添加到要显示的任何看板。服务帐户不是必需的……您自己可以成为帐户……但是将它分开可以保护您免受离开公司等人的影响。
创建一个微型应用程序(实际上只是一个一次性使用的网页),该应用程序通过弹出窗口等通常的 Trello 身份验证过程。您将从刚刚创建的服务帐户登录/验证。这将为您提供一个独特的 token ,让 Trello 知道您是合法的,并且您可以访问。
在您想要展示卡片的任何页面上使用此 token (将其视为 VIP 访问徽章)。您的用户永远不会看到 Trello 身份验证弹出窗口,因为我们已经向 Trello 展示了我们的 VIP 访问徽章。
打印出卡片、板等!很高兴,因为您现在可以向任何人展示卡片,而无需他们拥有 Trello 帐户。
再次感谢Ondrej and the folks over at HappyPorch感谢他们有用的帖子,并愿意帮助喜欢假装知道如何编码的 UX 设计师 :)
关于javascript - 显示来自私有(private) Trello 看板的卡片,访问者不需要 Trello 帐户,也不需要通过弹出窗口授权,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37095664/
如果需要在类外访问静态(例如单例),可以选择公共(public)静态而不是私有(private)静态,而当不需要公开函数时首选私有(private)静态(否则未命名的命名空间就可以了)——在这种情况下
在互联网上进行了一些搜索,但找不到简单的答案。我的问题集是在 Android 框架中使用 Java,但我相信这也是标准的 Java 行为。我理解 final 和 private 的定义,它们都用于变量
我有这个代码: public final class Board { private final int[][] blocks; private final int N; pr
对我来说,过去作为 Objective-C 开发人员很简单。一个类需要公开的每个字段都是一个属性,每个私有(private)字段都是一个没有 getter 或 setter 的实例变量。但我经常看到人
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我有一个在 Docker 容器中运行的应用程序。它需要来自公司私有(private) NPM 注册表(Sinopia)的一些私有(private)模块,并且访问这些需要用户身份验证。 Dockerfi
我试图理解 C# 使用 getters 和 setters 自动声明变量与 java 声明之间的区别。 在java中我通常这样做: private int test; public int getTe
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我目前正在使用 Objective-C(适用于 iPhone)构建游戏。 为此,出于性能/复杂性原因,我略微打破了 MVC,并为 View (渲染器)提供了对模型的直接引用。这是因为它应该以 60fp
我已经在 ubuntu 上成功配置了 2 个虚拟主机站点(基于名称的虚拟主机)。我的 apache 版本是 2.2.22。 这两个站点都在本地主机上工作。 /etc/hosts 条目 127.0.0.
考虑下面的类 public class A { private final Map cache; public HeavyObject getThing(); } 假设不能泄漏对缓存
我有一个类,它有一个方法,我希望它只能被它的子对象访问,而不能被这个包中的其他类访问。 Modifier | Class | Package | Subclass | World ———————
本文实例讲述了JavaScript中的公有、私有、特权和静态成员用法。分享给大家供大家参考。具体分析如下: 下面的内容是在《JavaScript.DOM高级程序设计》里面摘抄出来的,比较容易理解,
我有一个用例,我已将其简化为以下程序: public class A { private int x = 100; class B { private int y = ne
问题: 类声明如下: class Select { public: template static Iterator function(Iterator , Iterator , bo
我是一名初级 PHP 程序员。我还有很多东西要学。这就是我问这个问题的原因。在一个类中,您有一个公共(public)函数,您可以从该类外部调用它。有时你有一个私有(private)函数,你可以在私有(
问题是: 何时使用私有(private)函数,何时使用嵌套函数? (我在问 F# 但也许答案可能与其他功能语言相关) 一个小例子 namespace SomeName module BinaryRea
我发现工作表中仍然可以使用私有(private)函数。它们是隐藏的,但如果用户输入他们的名字,他们就会被调用。为什么?它应该以这种方式工作吗?有没有办法完全阻止用户定义的函数在 VBA 项目之外使用?
所以我最近开始尝试使用 Kotlin,我偶然发现了这个: If a top-level declaration is marked private, it is private to the pack
我是一名优秀的程序员,十分优秀!