blob: 81ab6960bc68275c1f7c1cabdfb42e3b901f1249 (
plain) (
blame)
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
|
package com.juick.server.api.apple;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import java.util.Collections;
import java.util.List;
@RestController
public class AppSiteAssociation {
@Value("${ios_app_id:}")
private String appId;
@GetMapping("/.well-known/apple-app-site-association")
@ResponseBody
public SiteAssociations appSiteAssociations() {
WebCredentials webCredentials = new WebCredentials();
webCredentials.setApps(Collections.singletonList(appId));
SiteAssociations siteAssociations = new SiteAssociations();
siteAssociations.setWebcredentials(webCredentials);
return siteAssociations;
}
private class SiteAssociations {
private WebCredentials webcredentials;
public WebCredentials getWebcredentials() {
return webcredentials;
}
public void setWebcredentials(WebCredentials webcredentials) {
this.webcredentials = webcredentials;
}
}
private class WebCredentials {
private List<String> apps;
public List<String> getApps() {
return apps;
}
public void setApps(List<String> apps) {
this.apps = apps;
}
}
}
|