CONNEXION
  • RetourJeux
    • Sorties
    • Hit Parade
    • Les + populaires
    • Les + attendus
    • Soluces
    • Tous les Jeux
    • Gaming
  • RetourActu Gaming
    • News
    • Astuces
    • Tests
    • Previews
    • Toute l'actu gaming
  • RetourBons plans
    • Bons plans
    • Bons plans Smartphone
    • Bons plans Hardware
    • Bons plans Image et Son
    • Bons plans Amazon
    • Bons plans Cdiscount
    • Bons plans Decathlon
    • Bons plans Fnac
    • Tous les Bons plans
  • RetourJVTech
    • Actus High-Tech
    • Intelligence Artificielle
    • Smartphones
    • Mobilité urbaine
    • Hardware
    • Image et son
    • Tutoriels
    • Tests produits High-Tech
    • Guides d'achat High-Tech
    • JVTech
  • RetourCulture
    • Actus Culture
    • Culture
  • RetourVidéos
    • A la une
    • Gaming Live
    • Vidéos Tests
    • Vidéos Previews
    • Gameplay
    • Trailers
    • Chroniques
    • Replay Web TV
    • Toutes les vidéos
  • RetourForums
    • Hardware PC
    • PS5
    • Switch 2
    • Xbox Series
    • Switch
    • Pokemon pocket
    • FC 25 Ultimate Team
    • League of Legends
    • Tous les Forums
  • PC
  • PS5
  • Xbox Series
  • Switch 2
  • PS4
  • One
  • Switch
  • iOS
  • Android
  • MMO
  • RPG
  • FPS
En ce moment Genshin Impact Valhalla Breath of the wild Animal Crossing GTA 5 Red dead 2
Liste des sujets

[ALERTE] Besoin d'un GÉNIE en Java/Android

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:18:51

Pour m'aider à documenter la v4 de l'API de jeuxvideo.com sur JVFlux. :oui:

Je ne pars pas de zéro, plus d'infos en MP.

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:21:30

Up :(

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:23:07

Les "software engineer" du forum sont au travail ? :)

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:25:05

Le 27 juillet 2023 à 16:21:30 Satisfaction06 a écrit :
Up :(

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:25:26

BCbeach
BCbeach
Niveau 33
27 juillet 2023 à 16:26:03

dataverse ?

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:26:11

Le 27 juillet 2023 à 16:25:26 Satisfaction06 a écrit :

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:27:02

Le 27 juillet 2023 à 16:26:03 BCbeach a écrit :
dataverse ?

Qu'est-ce que c'est que ça putain https://image.noelshack.com/fichiers/2022/38/3/1663780884-ahitriste.png
J'ai juste l'APK de jeuxvideo.com désobfusquée https://image.noelshack.com/fichiers/2022/38/3/1663780884-ahitriste.png

Message édité le 27 juillet 2023 à 16:27:50 par Satisfaction06
BCbeach
BCbeach
Niveau 33
27 juillet 2023 à 16:27:32

/// <summary>
/// Outputs the first active flow
/// </summary>
/// <param name="service">Authenticated client implementing the IOrganizationService interface</param>
public static void OutputFirstActiveFlow(IOrganizationService service)
{
var query = new QueryExpression("workflow")
{
ColumnSet = new ColumnSet("category",
"createdby",
"createdon",
"description",
"ismanaged",
"modifiedby",
"modifiedon",
"name",
"ownerid",
"statecode",
"type",
"workflowid",
"workflowidunique"),
Criteria = new FilterExpression(LogicalOperator.And)
{
Conditions = {
{ new ConditionExpression(
"category",
ConditionOperator.Equal,
5) }, // Cloud Flow
{ new ConditionExpression(
"statecode",
ConditionOperator.Equal,
1) } // Active
}
},
TopCount = 1 // Limit to one record
};

EntityCollection workflows = service.RetrieveMultiple(query);

Entity workflow = workflows.Entities.FirstOrDefault();

Console.WriteLine($"category: {workflow.FormattedValues["category"]}");
Console.WriteLine($"createdby: {workflow.FormattedValues["createdby"]}");
Console.WriteLine($"createdon: {workflow.FormattedValues["createdon"]}");
// Description may be null
Console.WriteLine($"description: {workflow.GetAttributeValue<string>("description")}");
Console.WriteLine($"ismanaged: {workflow.FormattedValues["ismanaged"]}");
Console.WriteLine($"modifiedby: {workflow.FormattedValues["modifiedby"]}");
Console.WriteLine($"modifiedon: {workflow.FormattedValues["modifiedon"]}");
Console.WriteLine($"name: {workflow["name"]}");
Console.WriteLine($"ownerid: {workflow.FormattedValues["ownerid"]}");
Console.WriteLine($"statecode: {workflow.FormattedValues["statecode"]}");
Console.WriteLine($"type: {workflow.FormattedValues["type"]}");
Console.WriteLine($"workflowid: {workflow["workflowid"]}");
Console.WriteLine($"workflowidunique: {workflow["workflowidunique"]}");
}

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:28:22

Le 27 juillet 2023 à 16:27:32 BCbeach a écrit :
/// <summary>
/// Outputs the first active flow
/// </summary>
/// <param name="service">Authenticated client implementing the IOrganizationService interface</param>
public static void OutputFirstActiveFlow(IOrganizationService service)
{
var query = new QueryExpression("workflow")
{
ColumnSet = new ColumnSet("category",
"createdby",
"createdon",
"description",
"ismanaged",
"modifiedby",
"modifiedon",
"name",
"ownerid",
"statecode",
"type",
"workflowid",
"workflowidunique"),
Criteria = new FilterExpression(LogicalOperator.And)
{
Conditions = {
{ new ConditionExpression(
"category",
ConditionOperator.Equal,
5) }, // Cloud Flow
{ new ConditionExpression(
"statecode",
ConditionOperator.Equal,
1) } // Active
}
},
TopCount = 1 // Limit to one record
};

EntityCollection workflows = service.RetrieveMultiple(query);

Entity workflow = workflows.Entities.FirstOrDefault();

Console.WriteLine($"category: {workflow.FormattedValues["category"]}");
Console.WriteLine($"createdby: {workflow.FormattedValues["createdby"]}");
Console.WriteLine($"createdon: {workflow.FormattedValues["createdon"]}");
// Description may be null
Console.WriteLine($"description: {workflow.GetAttributeValue<string>("description")}");
Console.WriteLine($"ismanaged: {workflow.FormattedValues["ismanaged"]}");
Console.WriteLine($"modifiedby: {workflow.FormattedValues["modifiedby"]}");
Console.WriteLine($"modifiedon: {workflow.FormattedValues["modifiedon"]}");
Console.WriteLine($"name: {workflow["name"]}");
Console.WriteLine($"ownerid: {workflow.FormattedValues["ownerid"]}");
Console.WriteLine($"statecode: {workflow.FormattedValues["statecode"]}");
Console.WriteLine($"type: {workflow.FormattedValues["type"]}");
Console.WriteLine($"workflowid: {workflow["workflowid"]}");
Console.WriteLine($"workflowidunique: {workflow["workflowidunique"]}");
}

https://image.noelshack.com/fichiers/2022/38/3/1663780884-ahitriste.png

BCbeach
BCbeach
Niveau 33
27 juillet 2023 à 16:29:25

Ca va pas ?

BCbeach
BCbeach
Niveau 33
27 juillet 2023 à 16:30:17

POST [Organization Uri]/api/data/v9.2/ImportSolution
OData-MaxVersion: 4.0
OData-Version: 4.0
If-None-Match: null
Accept: application/json
Content-Type: application/json; charset=utf-8
Content-Length: 4344

{
"OverwriteUnmanagedCustomizations": true,
"CustomizationFile": "UEsDBBQAAgAIA...<truncated for brevity>"
}

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:30:22

Le 27 juillet 2023 à 16:29:25 BCbeach a écrit :
Ca va pas ?

J'ai pas compris ce que t'as posté https://image.noelshack.com/fichiers/2022/38/3/1663780884-ahitriste.png

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:31:05

Mes seules connaissances de Java c'est un cours d'Openclassrooms suivi il y a environ un an et demi https://image.noelshack.com/fichiers/2022/38/3/1663780884-ahitriste.png

BCbeach
BCbeach
Niveau 33
27 juillet 2023 à 16:31:15

C'est quoi la récompense ?

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:31:48

Le 27 juillet 2023 à 16:30:17 BCbeach a écrit :
POST [Organization Uri]/api/data/v9.2/ImportSolution
OData-MaxVersion: 4.0
OData-Version: 4.0
If-None-Match: null
Accept: application/json
Content-Type: application/json; charset=utf-8
Content-Length: 4344

{
"OverwriteUnmanagedCustomizations": true,
"CustomizationFile": "UEsDBBQAAgAIA...<truncated for brevity>"
}

Troll ? https://image.noelshack.com/fichiers/2022/38/3/1663780884-ahitriste.png

BCbeach
BCbeach
Niveau 33
27 juillet 2023 à 16:32:31

/// <summary>
/// Imports a solution.
/// </summary>
/// <param name="service">Authenticated client implementing the IOrganizationService interface</param>
/// <param name="solutionFile">The byte[] data representing a solution file. </param>
public static void ImportSolution(
IOrganizationService service,
byte[] solutionFile) {

ImportSolutionRequest request = new() {
OverwriteUnmanagedCustomizations = true,
CustomizationFile = solutionFile
};

service.Execute(request);
}

Satisfaction06
Satisfaction06
Niveau 4
27 juillet 2023 à 16:32:32

Le 27 juillet 2023 à 16:31:15 BCbeach a écrit :
C'est quoi la récompense ?

Un candidat sérieux SVP https://image.noelshack.com/fichiers/2022/38/3/1663780884-ahitriste.png

CyberHaine
CyberHaine
Niveau 12
27 juillet 2023 à 16:32:54

Le 27 juillet 2023 à 16:31:05 :
Mes seules connaissances de Java c'est un cours d'Openclassrooms suivi il y a environ un an et demi https://image.noelshack.com/fichiers/2022/38/3/1663780884-ahitriste.png

" Dit moi une autre façon que tu part de zero sans dire que tu part de zero " ahient.

BCbeach
BCbeach
Niveau 33
27 juillet 2023 à 16:33:03

Je ferai pas mieux sans un billet

Sous forums
  • Religion
La vidéo du moment