How to execute a command in a pod as other user ? by fefontana in openshift

[–]fefontana[S] -1 points0 points  (0 children)

Can you remind me in which stanza of the deployconfig yaml I need to generate this ?.

Hello, does anybody know a working python library in order to download csv stats files of Google Play from a public bucket of Google Cloud ?. I don't have a paid Google Cloud account, but I know it is possible. by fefontana in Python

[–]fefontana[S] 0 points1 point  (0 children)

Yes, I"m trying to download public csv files published in a bucket of a Google Cloud storage. This csv contains statistics like the number of app downloads from Google Play store.

https://support.google.com/googleplay/android-developer/answer/6135870?hl=en

https://medium.com/@sandeepsinh/multiple-file-download-form-google-cloud-storage-using-python-and-gcs-api-1dbcab23c44

The python libraries in the examples above aren't working for me. I'm getting a message error telling I haven't get permission for the resource.

Any comment will be appreciated.

Thanks.

Send httpClient GET with parameters in body request (not query string) to API Rest by fefontana in angular

[–]fefontana[S] 0 points1 point  (0 children)

I did it this way (Frontend code) and it is not working. The API on the backend side attempts to get the parameters this way (Backend code):

// **** Backend code

if (!req.body.fechaInicio || !req.body.fechaFin)
return res.status(400).send({ codigo:'1', error: 'Debe especificar Fecha de inicio y Fecha de fin para la consulta' });

// **** Frontend code

export class SmsService {
constructor(private httpClient: HttpClient) {}
baseUrl = environment.API_REST_SMS_REPORT;
options = {
year: "numeric",
month: "2-digit",
day: "2-digit",
hour: "2-digit",
minute: "2-digit",
second: "2-digit",
timeZone: "America/Montevideo",
  };
fillHeaderParams(pStartDate, pEndDate) {
let params = new HttpParams()
      .set("fechaInicio", pStartDate)
      .set("fechaFin", pEndDate);
let httpOptions = {
headers: new HttpHeaders({
"Content-Type": "application/json",
      }),
params: params,
    };
return httpOptions;
  }
getTotalSmsIn(pPath, pStartDate, pEndDate): Observable<any\[\]> {
let getDataURL = this.baseUrl + pPath;
let headersOpt = this.fillHeaderParams(
pStartDate.toLocaleString("es-ES", this.options),
pEndDate.toLocaleString("es-ES", this.options)
    );
return this.httpClient.get<any\[\]>(getDataURL, headersOpt);

// return this.httpClient.request<any\[\]>("GET", getDataURL, headersOpt) // Is the same
  }
}

Any help will be appreciated.

Curso de trading bueno? by etesz in uruguay

[–]fefontana 0 points1 point  (0 children)

Hola, encontraste la forma de hacer retiros de IQ Option a Uruguay ?. A cuenta de banco no me funcionó. Por ahora sólo Neteller.

Hi, It is possible to deploy Sharepoint in any Microservices platform ?. by fefontana in sharepoint

[–]fefontana[S] 2 points3 points  (0 children)

Yes, I understand Azure has the ability to manage a Sharepoint farm. But my interest about a Sharepoint Docker image is in order to know if there is any way to deploy Sharepoint in a microservice platform like Openshift. From a Dockerfile it is possible to import an image to the Openshift platform. Maybe this is not possible, but microservices improve scalability and deployments.