-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[GROOMING] Contact synchonization v2 #2171
Labels
FT::CONTACT
Features connected to contacts and contact list
Comments
|
|
|
How to extract Fed server in well-know
{
...
"m.federated_identity_services": {
"base_urls": [
"https://fed...com/"
]
},
...
}
Create Fed server info:@JsonSerializable()
class FedServerInformation with EquatableMixin {
static const String fedServerKey = 'm.federated_identity_services';
@JsonKey(name: 'base_url')
final Uri? baseUrl;
@JsonKey(name: 'server_name')
final String? serverName;
FedServerInformation({
this.baseUrl,
this.serverName,
});
factory FedServerInformation.fromJson(Map<String, dynamic> json) =>
_$FedServerInformationFromJson(json);
Map<String, dynamic> toJson() => _$FedServerInformationToJson(this);
@override
List<Object?> get props => [baseUrl, serverName];
}
Create
|
How to work with Fed serverRequest Fed token
Response {
"access_token": "pXoIqYPEUwRUTMUAkjWMMIgF",
"token_type": "Bearer",
"matrix_server_name": "stg.lin-saas.com",
"expires_in": 3600
} Create
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Desc:
DoD:
The text was updated successfully, but these errors were encountered: