1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="firebaseappdistribution_v1alpha.html">Firebase App Distribution API</a> . <a href="firebaseappdistribution_v1alpha.apps.html">apps</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="firebaseappdistribution_v1alpha.apps.release_by_hash.html">release_by_hash()</a></code>
</p>
<p class="firstline">Returns the release_by_hash Resource.</p>
<p class="toc_element">
<code><a href="firebaseappdistribution_v1alpha.apps.releases.html">releases()</a></code>
</p>
<p class="firstline">Returns the releases Resource.</p>
<p class="toc_element">
<code><a href="firebaseappdistribution_v1alpha.apps.testers.html">testers()</a></code>
</p>
<p class="firstline">Returns the testers Resource.</p>
<p class="toc_element">
<code><a href="firebaseappdistribution_v1alpha.apps.upload_status.html">upload_status()</a></code>
</p>
<p class="firstline">Returns the upload_status Resource.</p>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#get">get(mobilesdkAppId, appView=None, x__xgafv=None)</a></code></p>
<p class="firstline">Get the app, if it exists</p>
<p class="toc_element">
<code><a href="#getJwt">getJwt(mobilesdkAppId, x__xgafv=None)</a></code></p>
<p class="firstline">Get a JWT token</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="get">get(mobilesdkAppId, appView=None, x__xgafv=None)</code>
<pre>Get the app, if it exists
Args:
mobilesdkAppId: string, Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)} Example: 1:581234567376:android:aa0a3c7b135e90289 (required)
appView: string, App view. When unset or set to BASIC, returns an App with everything set except for aab_state. When set to FULL, returns an App with aab_state set.
Allowed values
APP_VIEW_UNSPECIFIED - The default / unset value. The API will default to the BASIC view.
BASIC - Include everything except aab_state.
FULL - Include everything.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # An app.
"aabCertificate": { # App bundle test certificate # App bundle test certificate generated for the app.
"certificateHashMd5": "A String", # MD5 hash of the certificate used to resign the AAB
"certificateHashSha1": "A String", # SHA1 hash of the certificate used to resign the AAB
"certificateHashSha256": "A String", # SHA256 hash of the certificate used to resign the AAB
},
"aabState": "A String", # App bundle state. Only valid for android apps. The app_view field in the request must be set to FULL in order for this to be populated.
"appId": "A String", # Firebase gmp app id
"bundleId": "A String", # Bundle identifier
"contactEmail": "A String", # Developer contact email for testers to reach out to about privacy or support issues.
"platform": "A String", # iOS or Android
"projectNumber": "A String", # Project number of the Firebase project, for example 300830567303.
}</pre>
</div>
<div class="method">
<code class="details" id="getJwt">getJwt(mobilesdkAppId, x__xgafv=None)</code>
<pre>Get a JWT token
Args:
mobilesdkAppId: string, Required. Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)} Example: 1:581234567376:android:aa0a3c7b135e90289 (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A JWT token.
"token": "A String", # The JWT token (three Base64URL-encoded strings joined by dots).
}</pre>
</div>
</body></html>
|