confluence

Confluence Logout using SSO

╄→гoц情女王★ 提交于 2019-12-11 23:26:30
问题 I have written my own seraph custom authenticator for confluence. I can login from my system and confluence is able to recognize that I am logged in. Everything is fine so far. The problem is when I try to logout. I tried to set the logout.url in the seraph-config.xml, however that simply redirects the user to my logout page, but doesnt logout the user from confluence. Then I tried to delete all cookies by overriding the logout method in my custom authenticator class however that doesnt seem

Get Credentials from Current User in Atlassian Plugin

。_饼干妹妹 提交于 2019-12-11 08:17:08
问题 is it possible to get Username and Password in a Confluence Plugin? The Usernam works for me like this: ApplicationUser user = userUtil.getUserByName(userManager.getRemoteUsername(request)); I want to connect to the Jira Rest Api with the current User. 回答1: As @Philipp Sander already commented, it is not possible to retrieve the user's password. Confluence only stores passwords in an encrypted way, so it doesn't even know user passwords. However, since you're talking about a Confluence plugin

HTTP Basic Authentication and Attlassian JIRA, Confluence and Bitbucekt

蹲街弑〆低调 提交于 2019-12-11 00:27:58
问题 I have JIRA, Confluence and Bitbucket deployed on my server behind Apache reverse proxy. Each of them is connected with others using Application links. Now, I want to add additional layer of protection by implementing HTTP Basic Authentication in front of this. When I do this, I lose connection between apps. How to configure Apache properly in order to have HTTP Basic Authentication in front of whole stack AND connection between apps? 回答1: Where did you configure basic authentication?

Configuring a Port for Confluence on Google Compute engine

ぐ巨炮叔叔 提交于 2019-12-10 17:29:06
问题 I have installed Confluence on a Google Compute Engine Instance. Following is the configuration file for the server. <Server port="8000" shutdown="SHUTDOWN" debug="0"> <Service name="Tomcat-Standalone"> <Connector port="8090" connectionTimeout="20000" redirectPort="8443" maxThreads="200" minSpareThreads="10" enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8" /> <Engine name="Standalone" defaultHost="localhost" debug="0"> <Host name="localhost" debug="0" appBase="webapps"

How to post Swagger API documentation to Atlassian Confluence programmatically? (Usage of Swagger Confluence tool and Confluence REST API)

为君一笑 提交于 2019-12-10 04:33:34
问题 I'm trying to upload my Swagger JSON schema (myapi.json) into Atlassian Confluence using the swagger-confluence standalone tool. The standalone CLI .jar should (according to my understanding) operate like this (used this page for credentials Base64 encoding): java -jar <system path root>/swagger-confluence-cli-all-2.2-RELEASE.jar -u "http(s)://<server>:<port>/confluence/rest/api/" -b "<base64 encoded userid:password string" -a "<parent page id>" -k "<space key>" -g "true" -i "true" -s "

How to upload a file to Atlassian Confluence page using curl

时光毁灭记忆、已成空白 提交于 2019-12-10 02:39:47
问题 I am trying to upload an .xls file to a Confluence wiki page following the guidelines given in the Remote API documentation : https://developer.atlassian.com/confdev/confluence-server-rest-api/confluence-rest-api-examples#ConfluenceRESTAPIExamples-Uploadanattachment curl -v -S -u admin:admin -X POST -H "X-Atlassian-Token: nocheck" -F "file=@myfile.txt" -F "comment=this is my file" "http://localhost:8080/confluence/rest/api/content/3604482/child/attachment" | python -mjson.tool This is what I

How do you insert a confluence macro into a page created by the Confluence Rest Api?

六眼飞鱼酱① 提交于 2019-12-09 14:31:12
问题 I've successfully used the Confluence Rest API to create a page and attach it to a Space. MY json looks much like that from the example: { "type":"page","title":"My Example Page 1", "space": {"key":"DAT"}, "body":{"storage":{"value":"<p>This is a new page</p>","representation":"storage"}} } If I create a page interactively in Confluence, I'm given a list of canned macros when I click the 'Edit' button like 'Attachments' or 'Activity Stream'. What is the right json value to create a page with

JIRA项目管理的好工具

孤街醉人 提交于 2019-12-09 13:38:27
原文:https://www.jianshu.com/p/8c14b52ce692 JIRA是Atlassian公司的产品。 Atlassian公司于 2002在澳大利亚悉尼成立 ,提供面向 企业业务流程的协同办公产品 ,并于 2015年12月 在纳斯达克上市。 作为一家SaaS公司, 不雇佣一个销售人员,仅通过口碑获客,市值达10亿美金级别 (64亿美元-2017年3月13日),这也从另外角度反映出这个产品的独特之处。 Atlassian主要有5款产品,分别面向不同的市场。 JIRA( 项目 任务 管理软件 ) Confluence( 企业知识管理与协同软件 ) BitBucket( 代码库 ) HipChat( 内部聊天/协作软件 ) JIRA Service Desk( 服务台软件 )。 Atlassian最核心的产品仍然是 JIRA 和 Confluence , JIRA被业界公认为最好的 项目管理和开发管理 工具 , Confluence 被认为是最好用的企业级知识管理工具 。 包括美国 航空航天局使用Atlassian来设计火星探测器,Runkeeper使用Atlassian来设计健身应用 。 eBay、宝马、花旗都是Atlassian客户。 传闻世界 500 强企业里,80% 都用过JIRA。 JIRA中的核心概念 Project(项目) JIRA中的项目是一组问题单

Confluence REST API Authorization issue

∥☆過路亽.° 提交于 2019-12-08 06:03:53
问题 I am having issues with Atlassian Confluence REST API authentication. Please take a look at following C# code : private string USERNAME = "test"; private string PASSWORD = "test"; HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://xxx.atlassian.net/wiki/rest/api/content?os_authType=basic&spaceKey=DEV&Title=Development&expand=space,body.view,version,container"); request.Headers.Add("Authorization", "Basic " + Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(USERNAME +

Confluence: copy to clipboard button

試著忘記壹切 提交于 2019-12-08 01:20:40
问题 I am using Confluence 5.10.8. On some pages I have several text snippets to be copied to the clipboard by the reader. For each of those text snippets I would like to be able to add a non-editable text field and a button to copy the text to the clipboard when clicking it, maybe like this: I also need some visual feedback to indicate the text was copied. I think a user macro is the right thing to do this, right? Something like (does not copy yet): ## @param Text:title=Text|type=string|required