2

定義された親の子として特定のスペースにページを作成したいという事実に直面しています。

これらの手段でこれを行う可能性はありますか?まだ見つかりませんでした。

ありがとうございました!:)

4

3 に答える 3

1

ドキュメントをご覧ください: Create a new page as a child of another page

これはcurlですが、C#でも同様のはずです

于 2016-04-29T08:56:36.173 に答える
0

必要なすべての部品:

createPage 関数
http post 関数
サンプル json を修飾するためのダム クラス。
サンプル json とベース URL

internal static string createAPage(string space, string title, string body, string objectType, int ancestorId = -1)
        {
            string json = string.Empty;
            try
            {

                CreateContentWithParentJson createContentWithParentJson = JsonConvert.DeserializeObject<CreateContentWithParentJson>(_jsonCreatePageWithParentSample);
                createContentWithParentJson.space.key = space;
                createContentWithParentJson.title = title;
                body = body.Replace("&", "&amp;");
                createContentWithParentJson.body.storage.value = "<p>" + body + "</p>";
                Ancestor a = new Ancestor();
                a.id = ancestorId;
                createContentWithParentJson.ancestors = new List<Ancestor>();
                createContentWithParentJson.ancestors.Add(a);
                json = JsonConvert.SerializeObject(createContentWithParentJson, Utils.getJsonSettings());

        }
        catch (Exception) {  // handle exception 
        }
        return Utils.contentPost(json, _baseUrl);

    }


  internal static string contentPost(string postData, string url, string method = "POST")
        {
            string encodedCred = System.Convert.ToBase64String(System.Text.Encoding.GetEncoding("ISO-8859-1").GetBytes(ConfAPI._confUser + ":" + ConfAPI._confPass));
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
            request.Headers.Add("Authorization", "Basic " + encodedCred);
            request.Headers.Add("X-Atlassian-Token", "no-check");
            request.Method = method;
            request.Accept = "application/json";
            request.ContentType = "application/json";

            // request.KeepAlive = false;
            if (postData != null)
            {
                byte[] data = Encoding.UTF8.GetBytes(postData);
                request.ContentLength = data.Length;
                using (var stream = request.GetRequestStream())
                {
                    stream.Write(data, 0, data.Length);
                }
            }
            WebResponse response;

            try
            {
                response = (HttpWebResponse)request.GetResponse();
            }
            catch (WebException e)
            {
                return e.Message + " " + e.StackTrace.ToString();
            }

            var responsestring = new StreamReader(response.GetResponseStream()).ReadToEnd();
            return responsestring;
        }

  public class CreateContentWithParentJson
    {
        public string type { get; set; }
        public string title { get; set; }
        public List<Ancestor> ancestors { get; set; }
        public Space space { get; set; }
        public Body body { get; set; }
    }

 internal static string _baseUrl = "http://localhost:8090/rest/api/content";
 internal static string _jsonCreatePageWithParentSample = @"{'type':'page','title':'new page', 'ancestors':[{'id':456}], 'space':{'key':'TST'},'body':{'storage':{'value':'<p>This is a new page</p>','representation':'storage'}}}";
于 2017-03-12T14:49:50.010 に答える